- 论坛徽章:
- 0
|
觉得lz的帖子中编辑时好像少了一个"t"和下划线“_"
struct bus_tye usb bus_type=
{
.name="usb",
.match=usb_device_match,
.uevent=usb_uevent,
.suspend=usb_suspend,
.resume=usb_resume,
} ;
应为:
struct bus_type usb_bus_type=
{
.name="usb",
.match=usb_device_match,
.uevent=usb_uevent,
.suspend=usb_suspend,
.resume=usb_resume,
} ;
bus_type是描述总线的结构体,include/linux/device.h,这样应该就好了
49 struct bus_type {
50 const char * name;
51
52 struct subsystem subsys;
53 struct kset drivers;
54 struct kset devices;
55 struct klist klist_devices;
56 struct klist klist_drivers;
57
58 struct bus_attribute * bus_attrs;
59 struct device_attribute * dev_attrs;
60 struct driver_attribute * drv_attrs;
61
62 int (*match)(struct device * dev, struct device_driver * drv);
63 int (*hotplug) (struct device *dev, char **envp,
64 int num_envp, char *buffer, int buffer_size);
65 int (*suspend)(struct device * dev, pm_message_t state);
66 int (*resume)(struct device * dev);
67 };
[ 本帖最后由 蓝豆 于 2008-8-25 10:40 编辑 ] |
|