Remove CFGI_GetSecureInfoByte101 for now

This commit is contained in:
Joel16 2018-02-15 16:39:47 -06:00
parent 491bc054f0
commit 665e97ec43
2 changed files with 0 additions and 19 deletions

View File

@ -206,9 +206,3 @@ Result CFGI_GetSecureInfoData(u8 *data);
* @param data Pointer to output the buffer. (The size must be at least 0x100-bytes)
*/
Result CFGI_GetSecureInfoSignature(u8 *data);
/**
* @brief Gets value loaded from SecureInfo offset 0x101.
* @param data Pointer to output the buffer.
*/
Result CFGI_GetSecureInfoByte101(u8 *data);

View File

@ -403,16 +403,3 @@ Result CFGI_GetSecureInfoSignature(u8 *data)
return (Result)cmdbuf[1];
}
Result CFGI_GetSecureInfoByte101(u8 *data)
{
Result ret = 0;
u32 *cmdbuf = getThreadCommandBuffer();
cmdbuf[0] = IPC_MakeHeader(0x817,0,0); // 0x8170000
cmdbuf[2] = (u32)data;
if(R_FAILED(ret = svcSendSyncRequest(cfguHandle)))return ret;
return (Result)cmdbuf[1];
}