Files
linux-apfs/include/asm-powerpc/of_device.h
T

30 lines
775 B
C
Raw Normal View History

2005-10-06 13:22:17 +10:00
#ifndef _ASM_POWERPC_OF_DEVICE_H
#define _ASM_POWERPC_OF_DEVICE_H
#ifdef __KERNEL__
2005-04-16 15:20:36 -07:00
#include <linux/device.h>
2007-05-01 16:49:51 +10:00
#include <linux/of.h>
2005-04-16 15:20:36 -07: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 16:49:51 +10:00
* probed using OF properties.
2005-04-16 15:20:36 -07:00
*/
struct of_device
{
2006-11-11 17:25:02 +11:00
struct device_node *node; /* to be obsoleted */
2005-04-16 15:20:36 -07:00
u64 dma_mask; /* DMA mask */
struct device dev; /* Generic device interface */
};
2007-05-07 01:38:46 +10:00
extern ssize_t of_device_get_modalias(struct of_device *ofdev,
char *str, ssize_t len);
extern int of_device_uevent(struct device *dev,
struct kobj_uevent_env *env);
2007-05-01 16:49:51 +10:00
/* This is just here during the transition */
#include <linux/of_device.h>
#endif /* __KERNEL__ */
2005-10-06 13:22:17 +10:00
#endif /* _ASM_POWERPC_OF_DEVICE_H */