These changes are the raw update to linux-4.4.6-rt14. Kernel sources
[kvmfornfv.git] / kernel / scripts / dtc / libfdt / libfdt_internal.h
index 381133b..02cfa6f 100644 (file)
@@ -57,9 +57,9 @@
 
 #define FDT_CHECK_HEADER(fdt) \
        { \
-               int err; \
-               if ((err = fdt_check_header(fdt)) != 0) \
-                       return err; \
+               int __err; \
+               if ((__err = fdt_check_header(fdt)) != 0) \
+                       return __err; \
        }
 
 int _fdt_check_node_offset(const void *fdt, int offset);