diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2007-05-01 02:12:57 -0400 |
---|---|---|
committer | Stephen Rothwell <sfr@canb.auug.org.au> | 2007-07-20 00:25:22 -0400 |
commit | b41912ca345e6de8ec8469d57cd585881271e2b9 (patch) | |
tree | 665588b5d519602b90384fc65b225c0b070f830a /include/asm-sparc64/of_device.h | |
parent | 37b7754aab9a6ad7ecbba45c87f8d8a1f81b3bcc (diff) |
Create linux/of_platorm.h
Move common stuff from asm-powerpc/of_platform.h to here and
move the common bits from asm-sparc*/of_device.h here as well.
Create asm-sparc*/of_platform.h and move appropriate parts of
of_device.h to them.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Acked-by: Paul Mackerras <paulus@samba.org>
Acked-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/asm-sparc64/of_device.h')
-rw-r--r-- | include/asm-sparc64/of_device.h | 40 |
1 files changed, 2 insertions, 38 deletions
diff --git a/include/asm-sparc64/of_device.h b/include/asm-sparc64/of_device.h index daf36eb52292..46d69b3223c5 100644 --- a/include/asm-sparc64/of_device.h +++ b/include/asm-sparc64/of_device.h | |||
@@ -7,12 +7,6 @@ | |||
7 | #include <linux/mod_devicetable.h> | 7 | #include <linux/mod_devicetable.h> |
8 | #include <asm/openprom.h> | 8 | #include <asm/openprom.h> |
9 | 9 | ||
10 | extern struct bus_type isa_bus_type; | ||
11 | extern struct bus_type ebus_bus_type; | ||
12 | extern struct bus_type sbus_bus_type; | ||
13 | extern struct bus_type of_platform_bus_type; | ||
14 | #define of_bus_type of_platform_bus_type /* for compatibility */ | ||
15 | |||
16 | /* | 10 | /* |
17 | * The of_device is a kind of "base class" that is a superset of | 11 | * The of_device is a kind of "base class" that is a superset of |
18 | * struct device for use by devices attached to an OF node and | 12 | * struct device for use by devices attached to an OF node and |
@@ -36,39 +30,9 @@ struct of_device | |||
36 | extern void __iomem *of_ioremap(struct resource *res, unsigned long offset, unsigned long size, char *name); | 30 | extern void __iomem *of_ioremap(struct resource *res, unsigned long offset, unsigned long size, char *name); |
37 | extern void of_iounmap(struct resource *res, void __iomem *base, unsigned long size); | 31 | extern void of_iounmap(struct resource *res, void __iomem *base, unsigned long size); |
38 | 32 | ||
39 | extern struct of_device *of_find_device_by_node(struct device_node *); | 33 | /* These are just here during the transition */ |
40 | |||
41 | /* | ||
42 | * An of_platform_driver driver is attached to a basic of_device on | ||
43 | * the ISA, EBUS, and SBUS busses on sparc64. | ||
44 | */ | ||
45 | struct of_platform_driver | ||
46 | { | ||
47 | char *name; | ||
48 | struct of_device_id *match_table; | ||
49 | struct module *owner; | ||
50 | |||
51 | int (*probe)(struct of_device* dev, const struct of_device_id *match); | ||
52 | int (*remove)(struct of_device* dev); | ||
53 | |||
54 | int (*suspend)(struct of_device* dev, pm_message_t state); | ||
55 | int (*resume)(struct of_device* dev); | ||
56 | int (*shutdown)(struct of_device* dev); | ||
57 | |||
58 | struct device_driver driver; | ||
59 | }; | ||
60 | #define to_of_platform_driver(drv) container_of(drv,struct of_platform_driver, driver) | ||
61 | |||
62 | extern int of_register_driver(struct of_platform_driver *drv, | ||
63 | struct bus_type *bus); | ||
64 | extern void of_unregister_driver(struct of_platform_driver *drv); | ||
65 | extern struct of_device *of_platform_device_create(struct device_node *np, | ||
66 | const char *bus_id, | ||
67 | struct device *parent, | ||
68 | struct bus_type *bus); | ||
69 | |||
70 | /* This is just here during the transition */ | ||
71 | #include <linux/of_device.h> | 34 | #include <linux/of_device.h> |
35 | #include <linux/of_platform.h> | ||
72 | 36 | ||
73 | #endif /* __KERNEL__ */ | 37 | #endif /* __KERNEL__ */ |
74 | #endif /* _ASM_SPARC64_OF_DEVICE_H */ | 38 | #endif /* _ASM_SPARC64_OF_DEVICE_H */ |