diff options
author | David Daney <[email protected]> | 2012-10-05 10:45:30 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2012-10-06 02:48:09 +0900 |
commit | 67966e088b0c7dc926f4ce19565ebf208e18d058 (patch) | |
tree | 8e7b5bae0e86c670f6fe5ee9d7d0e5bf038c0a9b | |
parent | 578f1ef91aa92beb571bfb9af8f4d18f405f3b9e (diff) |
Partially revert a1ce39288e6fbef (UAPI: (Scripted) Convert #include "..." to #include <path/...> in kernel system headers)
Syntax errors were introduced into include/linux/libfdt.h by the
offending commit, revert the changes made to this file. The kernel
again compiles, thus restoring harmony and balance to the universe.
Signed-off-by: David Daney <[email protected]>
Cc: David Howells <[email protected]>
Cc: Arnd Bergmann <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Cc: Paul E. McKenney <[email protected]>
Cc: Dave Jones <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | include/linux/libfdt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/libfdt.h b/include/linux/libfdt.h index a0c3bf6c9edb..4c0306c69b4e 100644 --- a/include/linux/libfdt.h +++ b/include/linux/libfdt.h @@ -2,7 +2,7 @@ #define _INCLUDE_LIBFDT_H_ #include <linux/libfdt_env.h> -#include <> -#include <> +#include "../../scripts/dtc/libfdt/fdt.h" +#include "../../scripts/dtc/libfdt/libfdt.h" #endif /* _INCLUDE_LIBFDT_H_ */ |