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