Remove CFGI_GetSecureInfoByte101 for now
This commit is contained in:
parent
491bc054f0
commit
665e97ec43
@ -206,9 +206,3 @@ Result CFGI_GetSecureInfoData(u8 *data);
|
|||||||
* @param data Pointer to output the buffer. (The size must be at least 0x100-bytes)
|
* @param data Pointer to output the buffer. (The size must be at least 0x100-bytes)
|
||||||
*/
|
*/
|
||||||
Result CFGI_GetSecureInfoSignature(u8 *data);
|
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);
|
|
||||||
|
@ -403,16 +403,3 @@ Result CFGI_GetSecureInfoSignature(u8 *data)
|
|||||||
|
|
||||||
return (Result)cmdbuf[1];
|
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];
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user