summaryrefslogtreecommitdiffstats
path: root/target/linux/adm5120/patches-2.6.38/901-adm5120-usb-fix-compiler-warning.patch
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/adm5120/patches-2.6.38/901-adm5120-usb-fix-compiler-warning.patch')
-rw-r--r--target/linux/adm5120/patches-2.6.38/901-adm5120-usb-fix-compiler-warning.patch10
1 files changed, 5 insertions, 5 deletions
diff --git a/target/linux/adm5120/patches-2.6.38/901-adm5120-usb-fix-compiler-warning.patch b/target/linux/adm5120/patches-2.6.38/901-adm5120-usb-fix-compiler-warning.patch
index 93149df40..1abc84367 100644
--- a/target/linux/adm5120/patches-2.6.38/901-adm5120-usb-fix-compiler-warning.patch
+++ b/target/linux/adm5120/patches-2.6.38/901-adm5120-usb-fix-compiler-warning.patch
@@ -4,8 +4,8 @@
#define admhc_dbg_sw(ahcd, next, size, format, arg...) \
do { \
-- if (next) { \
-+ if (next != NULL) { \
- unsigned s_len; \
- s_len = scnprintf(*next, *size, format, ## arg ); \
- *size -= s_len; *next += s_len; \
+- if (next) { \
++ if (next != NULL) { \
+ unsigned s_len; \
+ s_len = scnprintf(*next, *size, format, ## arg); \
+ *size -= s_len; *next += s_len; \