Commit 296ecb35 authored by Philipp Hortmann's avatar Philipp Hortmann Committed by Greg Kroah-Hartman
parent c26f1c10
...@@ -57,9 +57,12 @@ structure. The skeleton driver declares a :c:type:`usb_driver` as:: ...@@ -57,9 +57,12 @@ structure. The skeleton driver declares a :c:type:`usb_driver` as::
.name = "skeleton", .name = "skeleton",
.probe = skel_probe, .probe = skel_probe,
.disconnect = skel_disconnect, .disconnect = skel_disconnect,
.fops = &skel_fops, .suspend = skel_suspend,
.minor = USB_SKEL_MINOR_BASE, .resume = skel_resume,
.pre_reset = skel_pre_reset,
.post_reset = skel_post_reset,
.id_table = skel_table, .id_table = skel_table,
.supports_autosuspend = 1,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment