at master 111 B view raw
1#ifndef LINUX_DEVICE_H 2 3struct device { 4 void *parent; 5}; 6 7struct device_driver { 8 const char *name; 9}; 10#endif