diff options
author | Andreas Larsson <andreas@gaisler.com> | 2012-11-06 00:12:03 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-11-09 16:30:50 -0800 |
commit | 0bce04be442cf4d6e4ba9dac2f0a4c5ee88af5c5 (patch) | |
tree | 97c771cc2cafbad347b0ef71eafd957ca06357a9 /arch/sparc | |
parent | 20424d85f8a07090fd32c6fad343f91b63c730b0 (diff) | |
download | linux-3.10-0bce04be442cf4d6e4ba9dac2f0a4c5ee88af5c5.tar.gz linux-3.10-0bce04be442cf4d6e4ba9dac2f0a4c5ee88af5c5.tar.bz2 linux-3.10-0bce04be442cf4d6e4ba9dac2f0a4c5ee88af5c5.zip |
of/address: sparc: Declare of_address_to_resource() as an extern function for sparc again
This bug-fix makes sure that of_address_to_resource is defined extern for sparc
so that the sparc-specific implementation of of_address_to_resource() is once
again used when including include/linux/of_address.h in a sparc context. A
number of drivers in mainline relies on this function working for sparc.
The bug was introduced in a850a7554442f08d3e910c6eeb4ee216868dda1e, "of/address:
add empty static inlines for !CONFIG_OF". Contrary to that commit title, the
static inlines are added for !CONFIG_OF_ADDRESS, and CONFIG_OF_ADDRESS is never
defined for sparc. This is good behavior for the other functions in
include/linux/of_address.h, as the extern functions defined in
drivers/of/address.c only gets linked when OF_ADDRESS is configured. However,
for of_address_to_resource there exists a sparc-specific implementation in
arch/sparc/arch/sparc/kernel/of_device_common.c
Solution suggested by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Andreas Larsson <andreas@gaisler.com>
Acked-by: Rob Herring <rob.herring@calxeda.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc')
-rw-r--r-- | arch/sparc/include/asm/prom.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/sparc/include/asm/prom.h b/arch/sparc/include/asm/prom.h index c2876511070..f93003123bc 100644 --- a/arch/sparc/include/asm/prom.h +++ b/arch/sparc/include/asm/prom.h @@ -63,5 +63,10 @@ extern char *of_console_options; extern void irq_trans_init(struct device_node *dp); extern char *build_path_component(struct device_node *dp); +/* SPARC has a local implementation */ +extern int of_address_to_resource(struct device_node *dev, int index, + struct resource *r); +#define of_address_to_resource of_address_to_resource + #endif /* __KERNEL__ */ #endif /* _SPARC_PROM_H */ |