Merge branch 'lsk-v4.4-eas-v5.2' of git://git.linaro.org/arm/eas/kernel.git
[firefly-linux-kernel-4.4.55.git] / Documentation / driver-model / driver.txt
index d2cd6fb8ba9efc649eb14cf4af8805ba762f0fe8..4421135826a2e5fb8526288afa06473cb2137027 100644 (file)
@@ -1,23 +1,7 @@
 
 Device Drivers
 
-struct device_driver {
-        char                    * name;
-        struct bus_type         * bus;
-
-        struct completion      unloaded;
-        struct kobject         kobj;
-        list_t                  devices;
-
-        struct module          *owner;
-
-        int     (*probe)        (struct device * dev);
-        int     (*remove)       (struct device * dev);
-
-        int     (*suspend)      (struct device * dev, pm_message_t state);
-        int     (*resume)       (struct device * dev);
-};
-
+See the kerneldoc for the struct device_driver.
 
 
 Allocation