強制AESフォーマットするために実行していた AttachAES() が不要になったため削除

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@1424 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
kamikawa 2008-05-20 08:42:57 +00:00
parent bfd0df1306
commit 10ab33030a
2 changed files with 0 additions and 44 deletions

View File

@ -86,7 +86,6 @@ static s32 CheckCorrectNCDEx(NVRAMConfigEx* ncdsp);
static s32 CheckCorrectNCD(NVRAMConfig* ncdsp);
#endif
static void VBlankIntr(void);
static void AttachAES(void);
/*---------------------------------------------------------------------------*
Name: TwlSpMain
@ -119,9 +118,6 @@ TwlSpMain(void)
(void)OS_EnableIrq();
(void)OS_EnableInterrupts();
// 強制AESモード
AttachAES();
/* 各ライブラリ初期化 */
AES_Init(); // AES
SEA_Init(); // SEA
@ -688,21 +684,3 @@ VBlankIntr(void)
PM_SelfBlinkProc();
}
}
/*---------------------------------------------------------------------------*
Name: AttachAES
Description: AESマウントするようにします
Arguments: None.
Returns: None.
*---------------------------------------------------------------------------*/
extern BOOL sdmc_aes_attach_for_nand; // 強制AESマウント用
static void AttachAES(void)
{
// 強制AESマウント
sdmc_aes_attach_for_nand = TRUE;
}

View File

@ -84,7 +84,6 @@ static s32 CheckCorrectNCDEx(NVRAMConfigEx* ncdsp);
static s32 CheckCorrectNCD(NVRAMConfig* ncdsp);
#endif
static void VBlankIntr(void);
static void AttachAES(void);
/*---------------------------------------------------------------------------*
Name: TwlSpMain
@ -117,9 +116,6 @@ TwlSpMain(void)
(void)OS_EnableIrq();
(void)OS_EnableInterrupts();
// 強制AESモード
AttachAES();
/* 各ライブラリ初期化 */
AES_Init(); // AES
SEA_Init(); // SEA
@ -676,21 +672,3 @@ VBlankIntr(void)
PM_SelfBlinkProc();
}
}
/*---------------------------------------------------------------------------*
Name: AttachAES
Description: AESマウントするようにします
Arguments: None.
Returns: None.
*---------------------------------------------------------------------------*/
extern BOOL sdmc_aes_attach_for_nand; // 強制AESマウント用
static void AttachAES(void)
{
// 強制AESマウント
sdmc_aes_attach_for_nand = TRUE;
}