Skip to content

Commit

Permalink
of: move definition of of_chosen into common code.
Browse files Browse the repository at this point in the history
Rather than defining of_chosen in each arch, it can be defined for all
in driver/of/base.c

Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Acked-by: Michal Simek <monstr@monstr.eu>
  • Loading branch information
Grant Likely committed Feb 14, 2010
1 parent 22d5579 commit fc0bdae
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 10 deletions.
2 changes: 0 additions & 2 deletions arch/microblaze/include/asm/prom.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@
#include <asm/irq.h>
#include <asm/atomic.h>

extern struct device_node *of_chosen;

#define HAVE_ARCH_DEVTREE_FIXUPS

/* Other Prototypes */
Expand Down
3 changes: 0 additions & 3 deletions arch/microblaze/kernel/prom.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,6 @@
#include <asm/sections.h>
#include <asm/pci-bridge.h>

/* export that to outside world */
struct device_node *of_chosen;

void __init early_init_dt_scan_chosen_arch(unsigned long node)
{
/* No Microblaze specific code here */
Expand Down
2 changes: 0 additions & 2 deletions arch/powerpc/include/asm/prom.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
#include <asm/irq.h>
#include <asm/atomic.h>

extern struct device_node *of_chosen;

#define HAVE_ARCH_DEVTREE_FIXUPS

#ifdef CONFIG_PPC32
Expand Down
3 changes: 0 additions & 3 deletions arch/powerpc/kernel/prom.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,6 @@ int __initdata iommu_force_on;
unsigned long tce_alloc_start, tce_alloc_end;
#endif

/* export that to outside world */
struct device_node *of_chosen;

static int __init early_parse_mem(char *p)
{
if (!p)
Expand Down
1 change: 1 addition & 0 deletions drivers/of/base.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#include <linux/proc_fs.h>

struct device_node *allnodes;
struct device_node *of_chosen;

/* use when traversing tree through the allnext, child, sibling,
* or parent members of struct device_node.
Expand Down
1 change: 1 addition & 0 deletions include/linux/of.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ struct device_node {

/* Pointer for first entry in chain of all nodes. */
extern struct device_node *allnodes;
extern struct device_node *of_chosen;

static inline int of_node_check_flag(struct device_node *n, unsigned long flag)
{
Expand Down

0 comments on commit fc0bdae

Please sign in to comment.