Files

11 lines
111 B
C
Raw Permalink Normal View History

2010-11-29 19:16:37 +02:00
#ifndef LINUX_DEVICE_H
struct device {
void *parent;
};
struct device_driver {
const char *name;
};
2010-11-29 19:16:37 +02:00
#endif