Ignore:
Timestamp:
Jan 17, 2021, 7:58:38 AM (5 years ago)
Author:
Paul Smedley
Message:

Cleanup headers, fix warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GPL/branches/uniaud32-next/include/linux/pci.h

    r640 r647  
    2323#include <linux/device.h>
    2424#include <linux/pm.h>
     25#include <linux/io.h>
    2526
    2627#pragma pack(1) //!!! by vladest
     
    583584};
    584585
    585 #if 1
    586 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 #endif
    609 
    610586struct pci_driver {
    611587        struct list_head node;
Note: See TracChangeset for help on using the changeset viewer.