diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2010-06-29 13:15:54 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2010-07-24 11:57:52 -0400 |
commit | 295960429675e17ec658320ebb24385727032bed (patch) | |
tree | a4631bf0a2c209e964e261a471d9584b8db28197 /arch/sparc | |
parent | 129ac799ad627b1e08382739f9e8cd75d7477fa3 (diff) |
of: remove asm/of_device.h
It is mostly unused now. Sparc has a few defines left in it, but they
can be moved to other headers. Removing this header means that new
architectures adding CONFIG_OF support don't need to also add this
header file.
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Acked-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc')
-rw-r--r-- | arch/sparc/include/asm/device.h | 2 | ||||
-rw-r--r-- | arch/sparc/include/asm/of_device.h | 19 | ||||
-rw-r--r-- | arch/sparc/include/asm/prom.h | 4 |
3 files changed, 6 insertions, 19 deletions
diff --git a/arch/sparc/include/asm/device.h b/arch/sparc/include/asm/device.h index fb220e482039..daa6a8a5e9cd 100644 --- a/arch/sparc/include/asm/device.h +++ b/arch/sparc/include/asm/device.h | |||
@@ -19,6 +19,8 @@ struct dev_archdata { | |||
19 | int numa_node; | 19 | int numa_node; |
20 | }; | 20 | }; |
21 | 21 | ||
22 | extern void of_propagate_archdata(struct platform_device *bus); | ||
23 | |||
22 | struct pdev_archdata { | 24 | struct pdev_archdata { |
23 | struct resource resource[PROMREG_MAX]; | 25 | struct resource resource[PROMREG_MAX]; |
24 | unsigned int irqs[PROMINTR_MAX]; | 26 | unsigned int irqs[PROMINTR_MAX]; |
diff --git a/arch/sparc/include/asm/of_device.h b/arch/sparc/include/asm/of_device.h deleted file mode 100644 index 22b9828fe693..000000000000 --- a/arch/sparc/include/asm/of_device.h +++ /dev/null | |||
@@ -1,19 +0,0 @@ | |||
1 | #ifndef _ASM_SPARC_OF_DEVICE_H | ||
2 | #define _ASM_SPARC_OF_DEVICE_H | ||
3 | #ifdef __KERNEL__ | ||
4 | |||
5 | #include <linux/device.h> | ||
6 | #include <linux/of.h> | ||
7 | #include <linux/mod_devicetable.h> | ||
8 | #include <asm/openprom.h> | ||
9 | |||
10 | extern void __iomem *of_ioremap(struct resource *res, unsigned long offset, unsigned long size, char *name); | ||
11 | extern void of_iounmap(struct resource *res, void __iomem *base, unsigned long size); | ||
12 | |||
13 | extern void of_propagate_archdata(struct of_device *bus); | ||
14 | |||
15 | /* This is just here during the transition */ | ||
16 | #include <linux/of_platform.h> | ||
17 | |||
18 | #endif /* __KERNEL__ */ | ||
19 | #endif /* _ASM_SPARC_OF_DEVICE_H */ | ||
diff --git a/arch/sparc/include/asm/prom.h b/arch/sparc/include/asm/prom.h index ac695742df85..d35df5ace18a 100644 --- a/arch/sparc/include/asm/prom.h +++ b/arch/sparc/include/asm/prom.h | |||
@@ -51,6 +51,10 @@ extern void prom_build_devicetree(void); | |||
51 | extern void of_populate_present_mask(void); | 51 | extern void of_populate_present_mask(void); |
52 | extern void of_fill_in_cpu_data(void); | 52 | extern void of_fill_in_cpu_data(void); |
53 | 53 | ||
54 | struct resource; | ||
55 | extern void __iomem *of_ioremap(struct resource *res, unsigned long offset, unsigned long size, char *name); | ||
56 | extern void of_iounmap(struct resource *res, void __iomem *base, unsigned long size); | ||
57 | |||
54 | /* These routines are here to provide compatibility with how powerpc | 58 | /* These routines are here to provide compatibility with how powerpc |
55 | * handles IRQ mapping for OF device nodes. We precompute and permanently | 59 | * handles IRQ mapping for OF device nodes. We precompute and permanently |
56 | * register them in the of_device objects, whereas powerpc computes them | 60 | * register them in the of_device objects, whereas powerpc computes them |