2005-10-06 07:22:17 +04:00
|
|
|
#ifndef _ASM_POWERPC_OF_DEVICE_H
|
|
|
|
#define _ASM_POWERPC_OF_DEVICE_H
|
2005-12-17 00:43:46 +03:00
|
|
|
#ifdef __KERNEL__
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
#include <linux/device.h>
|
2007-05-01 10:49:51 +04:00
|
|
|
#include <linux/of.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The of_device is a kind of "base class" that is a superset of
|
|
|
|
* struct device for use by devices attached to an OF node and
|
2007-05-01 10:49:51 +04:00
|
|
|
* probed using OF properties.
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
struct of_device
|
|
|
|
{
|
2006-11-11 09:25:02 +03:00
|
|
|
struct device_node *node; /* to be obsoleted */
|
2005-04-17 02:20:36 +04:00
|
|
|
u64 dma_mask; /* DMA mask */
|
|
|
|
struct device dev; /* Generic device interface */
|
|
|
|
};
|
|
|
|
|
2007-05-06 19:38:46 +04:00
|
|
|
extern ssize_t of_device_get_modalias(struct of_device *ofdev,
|
|
|
|
char *str, ssize_t len);
|
2007-02-13 01:13:25 +03:00
|
|
|
extern int of_device_uevent(struct device *dev,
|
2007-08-14 17:15:12 +04:00
|
|
|
struct kobj_uevent_env *env);
|
2007-02-13 01:13:25 +03:00
|
|
|
|
2007-05-01 10:49:51 +04:00
|
|
|
/* This is just here during the transition */
|
|
|
|
#include <linux/of_device.h>
|
|
|
|
|
2005-12-17 00:43:46 +03:00
|
|
|
#endif /* __KERNEL__ */
|
2005-10-06 07:22:17 +04:00
|
|
|
#endif /* _ASM_POWERPC_OF_DEVICE_H */
|