device.h 111 B

12345678910
  1. #ifndef LINUX_DEVICE_H
  2. struct device {
  3. void *parent;
  4. };
  5. struct device_driver {
  6. const char *name;
  7. };
  8. #endif