Skip to content
Snippets Groups Projects
Commit bb930e76 authored by Gerald Van Baren's avatar Gerald Van Baren
Browse files

Minor code clean up.


Declare the variable fdt properly as extern.
Call the "set_fn" function pointer the "short way" without the full
  dereferencing syntax.

Signed-off-by: default avatarGerald Van Baren <vanbaren@cideas.com>
parent ba24e2ac
No related branches found
No related tags found
No related merge requests found
...@@ -37,6 +37,11 @@ ...@@ -37,6 +37,11 @@
*/ */
DECLARE_GLOBAL_DATA_PTR; DECLARE_GLOBAL_DATA_PTR;
/*
* fdt points to our working device tree.
*/
struct fdt_header *fdt;
/********************************************************************/ /********************************************************************/
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
#include <asm/byteorder.h> #include <asm/byteorder.h>
#include <linux/string.h> #include <linux/string.h>
struct fdt_header *fdt; /* Pointer to the working fdt */ extern struct fdt_header *fdt; /* Pointer to the working fdt */
#define fdt32_to_cpu(x) __be32_to_cpu(x) #define fdt32_to_cpu(x) __be32_to_cpu(x)
#define cpu_to_fdt32(x) __cpu_to_be32(x) #define cpu_to_fdt32(x) __cpu_to_be32(x)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment