diff options
author | Reiko Asakura | 2021-03-08 18:52:35 -0500 |
---|---|---|
committer | Reiko Asakura | 2021-03-08 18:52:35 -0500 |
commit | a63eb2625d013f1e88eb9bdca2a540be3319b932 (patch) | |
tree | 9666f15091aaa4da742e6b88b8c35e8a031935d6 /include/kernel/lowio | |
parent | Fix Swapped NIDs for GetParameterDirection and GetParameterVariability (diff) | |
download | vds-libraries-a63eb2625d013f1e88eb9bdca2a540be3319b932.tar.gz |
Rename include guards
Diffstat (limited to '')
-rw-r--r-- | include/kernel/lowio/dsi.h | 6 | ||||
-rw-r--r-- | include/kernel/lowio/gpio.h | 6 | ||||
-rw-r--r-- | include/kernel/lowio/i2c.h | 6 | ||||
-rw-r--r-- | include/kernel/lowio/iftu.h | 6 | ||||
-rw-r--r-- | include/kernel/lowio/pervasive.h | 6 |
5 files changed, 15 insertions, 15 deletions
diff --git a/include/kernel/lowio/dsi.h b/include/kernel/lowio/dsi.h index 9a4879f..42c0bb9 100644 --- a/include/kernel/lowio/dsi.h +++ b/include/kernel/lowio/dsi.h @@ -2,8 +2,8 @@ Vita Development Suite Libraries */ -#ifndef _PSP2_KERN_LOWIO_DSI_H_ -#define _PSP2_KERN_LOWIO_DSI_H_ +#ifndef _VDSUITE_KERNEL_LOWIO_DSI_H +#define _VDSUITE_KERNEL_LOWIO_DSI_H #ifdef __cplusplus extern "C" { @@ -37,5 +37,5 @@ int sceDsiDcsRead(int head, unsigned short param, void *buff, unsigned int size) } #endif -#endif /* _PSP2_KERN_LOWIO_DSI_H_ */ +#endif /* _VDSUITE_KERNEL_LOWIO_DSI_H */ diff --git a/include/kernel/lowio/gpio.h b/include/kernel/lowio/gpio.h index 17564b6..8e6f642 100644 --- a/include/kernel/lowio/gpio.h +++ b/include/kernel/lowio/gpio.h @@ -2,8 +2,8 @@ Vita Development Suite Libraries */ -#ifndef _PSP2_KERN_LOWIO_GPIO_H_ -#define _PSP2_KERN_LOWIO_GPIO_H_ +#ifndef _VDSUITE_KERNEL_LOWIO_GPIO_H +#define _VDSUITE_KERNEL_LOWIO_GPIO_H #ifdef __cplusplus extern "C" { @@ -40,5 +40,5 @@ int sceGpioQueryIntr(int bus, int port); } #endif -#endif /* _PSP2_KERN_LOWIO_GPIO_H_ */ +#endif /* _VDSUITE_KERNEL_LOWIO_GPIO_H */ diff --git a/include/kernel/lowio/i2c.h b/include/kernel/lowio/i2c.h index 3928891..cc05de1 100644 --- a/include/kernel/lowio/i2c.h +++ b/include/kernel/lowio/i2c.h @@ -2,8 +2,8 @@ Vita Development Suite Libraries */ -#ifndef _PSP2_KERN_LOWIO_I2C_H_ -#define _PSP2_KERN_LOWIO_I2C_H_ +#ifndef _VDSUITE_KERNEL_LOWIO_I2C_H +#define _VDSUITE_KERNEL_LOWIO_I2C_H #ifdef __cplusplus extern "C" { @@ -40,5 +40,5 @@ int sceI2cSetDebugHandlers(int bus, SceI2cDebugHandlers *debug_handlers); } #endif -#endif /* _PSP2_KERN_LOWIO_I2C_H_ */ +#endif /* _VDSUITE_KERNEL_LOWIO_I2C_H */ diff --git a/include/kernel/lowio/iftu.h b/include/kernel/lowio/iftu.h index bafe02b..4dc20f0 100644 --- a/include/kernel/lowio/iftu.h +++ b/include/kernel/lowio/iftu.h @@ -2,8 +2,8 @@ Vita Development Suite Libraries */ -#ifndef _PSP2_KERN_LOWIO_IFTU_H_ -#define _PSP2_KERN_LOWIO_IFTU_H_ +#ifndef _VDSUITE_KERNEL_LOWIO_IFTU_H +#define _VDSUITE_KERNEL_LOWIO_IFTU_H #ifdef __cplusplus extern "C" { @@ -92,5 +92,5 @@ int sceIftuCsc(SceIftuFrameBuf *dst, SceIftuPlaneState *src, SceIftuConvParams * } #endif -#endif /* _PSP2_KERN_LOWIO_IFTU_H_ */ +#endif /* _VDSUITE_KERNEL_LOWIO_IFTU_H */ diff --git a/include/kernel/lowio/pervasive.h b/include/kernel/lowio/pervasive.h index b16ee96..12d8a3a 100644 --- a/include/kernel/lowio/pervasive.h +++ b/include/kernel/lowio/pervasive.h @@ -2,8 +2,8 @@ Vita Development Suite Libraries */ -#ifndef _PSP2_KERN_LOWIO_PERVASIVE_H_ -#define _PSP2_KERN_LOWIO_PERVASIVE_H_ +#ifndef _VDSUITE_KERNEL_LOWIO_PERVASIVE_H +#define _VDSUITE_KERNEL_LOWIO_PERVASIVE_H #ifdef __cplusplus extern "C" { @@ -43,5 +43,5 @@ int scePervasiveRemovableMemoryGetCardInsertState(void); } #endif -#endif /* _PSP2_KERN_LOWIO_PERVASIVE_H_ */ +#endif /* _VDSUITE_KERNEL_LOWIO_PERVASIVE_H */ |