diff options
author | Sunguk Lee | 2019-01-28 13:18:07 +0900 |
---|---|---|
committer | Sunguk Lee | 2019-01-28 13:19:28 +0900 |
commit | befdc9090c99a6b786e3714fc67210976e1eeeee (patch) | |
tree | 553d1f7ba229f33e991d5ad6e571ad9bc13d47b4 /include | |
parent | Add ksceKernelSysrootGetSystemSwVersion (diff) | |
download | vds-libraries-befdc9090c99a6b786e3714fc67210976e1eeeee.tar.gz |
Change function name in psp2kern/syscon.h
just fix wrong function name since 21ffa306d (db.yml was changed)
it will fix broken CI, but documents is still wrong
Diffstat (limited to 'include')
-rw-r--r-- | include/kernel/syscon.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/kernel/syscon.h b/include/kernel/syscon.h index 67a64bb..c5bae25 100644 --- a/include/kernel/syscon.h +++ b/include/kernel/syscon.h @@ -104,7 +104,7 @@ int sceSysconCmdSync(SceSysconPacket *packet, int noWait); * * @return 0 on success. */ -int sceSysconResetDevice(int type, int mode); +int sceSysconSetPowerMode(int type, int mode); int sceSysconReadCommand(unsigned short cmd, void *buffer, unsigned int size); int sceSysconSendCommand(unsigned short cmd, const void *buffer, unsigned int size); @@ -133,7 +133,7 @@ int sceSysconCtrlLED(int led, int enable); * * @return 0 on success. */ -int sceSysconCtrlMsPower(int power); +int sceSysconCtrlRMRPower(int power); /** * Set the SD power. |