diff options
author | Michal Simek <monstr@monstr.eu> | 2009-11-23 10:07:51 +0100 |
---|---|---|
committer | Michal Simek <monstr@monstr.eu> | 2009-12-14 08:45:04 +0100 |
commit | d68bf9705ad490ad86b0b1be9a2b91a363d6eccc (patch) | |
tree | 88435f0a282032fca12837be177b2fc97960e52a /arch/microblaze | |
parent | 6d858535be59b220c0f8dc335e030c2e3f3a3032 (diff) | |
download | linux-d68bf9705ad490ad86b0b1be9a2b91a363d6eccc.tar.gz linux-d68bf9705ad490ad86b0b1be9a2b91a363d6eccc.tar.xz |
microblaze: Adding dev_arch_data functions
The functions, dev_arch_data_set_node and get_node are missing
and are needed by some device drivers such as I2C.
Signed-off-by: John Linn <john.linn@xilinx.com>
Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'arch/microblaze')
-rw-r--r-- | arch/microblaze/include/asm/device.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/microblaze/include/asm/device.h b/arch/microblaze/include/asm/device.h index 30286db27c1c..78a038452c0f 100644 --- a/arch/microblaze/include/asm/device.h +++ b/arch/microblaze/include/asm/device.h @@ -19,6 +19,18 @@ struct dev_archdata { struct pdev_archdata { }; +static inline void dev_archdata_set_node(struct dev_archdata *ad, + struct device_node *np) +{ + ad->of_node = np; +} + +static inline struct device_node * +dev_archdata_get_node(const struct dev_archdata *ad) +{ + return ad->of_node; +} + #endif /* _ASM_MICROBLAZE_DEVICE_H */ |