diff options
author | Sunguk Lee | 2018-01-14 19:40:01 +0900 |
---|---|---|
committer | Sunguk Lee | 2018-01-15 01:36:00 +0900 |
commit | 8cb4208f52b5f94555955ce9cc2eff6b7fa5c2f7 (patch) | |
tree | 64df67b1afa8db795f6fbe31afa8aa8f668d9b95 /include/kernel/udcd.h | |
parent | Merge pull request #283 from d3m3vilurr/update-ctrl (diff) | |
download | vds-libraries-8cb4208f52b5f94555955ce9cc2eff6b7fa5c2f7.tar.gz |
Remove all NID mismatched definitions
anyway, we can't use these functions before finding right NID value.
but if we provide these & doc contains these info, end-programmers can
have confusion
Resolve #201
Diffstat (limited to '')
-rw-r--r-- | include/kernel/udcd.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/include/kernel/udcd.h b/include/kernel/udcd.h index 8243833..c79f356 100644 --- a/include/kernel/udcd.h +++ b/include/kernel/udcd.h @@ -444,15 +444,6 @@ int sceUdcdGetDeviceInfo(SceUdcdDeviceInfo *devInfo); int sceUdcdGetDrvState(const char *driverName); /** - * Get the list of drivers - * @param flags - One or more ::SceUdcdStatusDriver - * @param list - points to the output list - * @param size - number of entries in the output list - * @return the number of drivers in the output or < 0 in case of error - */ -int sceUdcdGetDrvList(unsigned int flags, SceUdcdDriverName *list, int size); - -/** * Wait for USB state * @param state - combination of states (returned by ::sceUdcdGetDeviceState) * @param waitMode - one of the ::SceEventFlagWaitTypes @@ -462,12 +453,6 @@ int sceUdcdGetDrvList(unsigned int flags, SceUdcdDriverName *list, int size); int sceUdcdWaitState(unsigned int state, unsigned int waitMode, SceUInt *timeout); /** - * Cancel a pending sceUdcdWaitState - * @return 0 on success - */ -int sceUdcdWaitCancel(void); - -/** * Register a USB driver. * * @param drv - Pointer to a filled out USB driver |