Prev: [PATCH] video: enable sh_mobile_lcdc on SH-Mobile ARM
Next: irq: move some interrupt arch_* functions into struct irq_chip.
From: Robert P. J. Day on 10 Mar 2010 06:40 Signed-off-by: Robert P. J. Day <rpjday(a)crashcourse.ca> --- not sure if the rest of this doc file needs updating as well but, at the very least, the defintion of "struct bus_type" should be updated to no longer refer to kset-related content or the obsolete "struct subsystem." diff --git a/Documentation/driver-model/bus.txt b/Documentation/driver-model/bus.txt index 5001b75..32650be 100644 --- a/Documentation/driver-model/bus.txt +++ b/Documentation/driver-model/bus.txt @@ -5,24 +5,27 @@ Definition ~~~~~~~~~~ struct bus_type { - char * name; + const char *name; + struct bus_attribute *bus_attrs; + struct device_attribute *dev_attrs; + struct driver_attribute *drv_attrs; - struct subsystem subsys; - struct kset drivers; - struct kset devices; + int (*match)(struct device *dev, struct device_driver *drv); + int (*uevent)(struct device *dev, struct kobj_uevent_env *env); + int (*probe)(struct device *dev); + int (*remove)(struct device *dev); + void (*shutdown)(struct device *dev); - struct bus_attribute * bus_attrs; - struct device_attribute * dev_attrs; - struct driver_attribute * drv_attrs; + int (*suspend)(struct device *dev, pm_message_t state); + int (*resume)(struct device *dev); - int (*match)(struct device * dev, struct device_driver * drv); - int (*hotplug) (struct device *dev, char **envp, - int num_envp, char *buffer, int buffer_size); - int (*suspend)(struct device * dev, pm_message_t state); - int (*resume)(struct device * dev); + const struct dev_pm_ops *pm; + + struct bus_type_private *p; }; -int bus_register(struct bus_type * bus); +extern int __must_check bus_register(struct bus_type *bus); +extern void bus_unregister(struct bus_type *bus); Declaration rday -- ======================================================================== Robert P. J. Day Waterloo, Ontario, CANADA Linux Consulting, Training and Kernel Pedantry. Web page: http://crashcourse.ca Twitter: http://twitter.com/rpjday ======================================================================== -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |