Changeset 647 for GPL/branches/uniaud32-next/include/linux/pci.h
- Timestamp:
- Jan 17, 2021, 7:58:38 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/uniaud32-next/include/linux/pci.h
r640 r647 23 23 #include <linux/device.h> 24 24 #include <linux/pm.h> 25 #include <linux/io.h> 25 26 26 27 #pragma pack(1) //!!! by vladest … … 583 584 }; 584 585 585 #if 1586 struct device_driver {587 const char *name;588 struct bus_type *bus;589 590 struct module *owner;591 const char *mod_name; /* used for built-in modules */592 593 bool suppress_bind_attrs; /* disables bind/unbind via sysfs */594 595 const struct of_device_id *of_match_table;596 597 int (*probe) (struct device *dev);598 int (*remove) (struct device *dev);599 void (*shutdown) (struct device *dev);600 int (*suspend) (struct device *dev, u32 state);601 int (*resume) (struct device *dev);602 const struct attribute_group **groups;603 604 const struct dev_pm_ops *pm;605 606 struct driver_private *p;607 };608 #endif609 610 586 struct pci_driver { 611 587 struct list_head node;
Note:
See TracChangeset
for help on using the changeset viewer.