usb: gadget: push all usb_composite_driver structs into __refdata

As it turns out, Sam's comment was better than I initially assumed. This
patch pushes as struct usb_composite_driver data structures into
__refdata section to avoid a section missmatch report from modpost
because the ->bind() can be marked __init. The only downside is that
modpost does not check between ->bind() and other member. However, it is
temporary.

Cc: Sam Ravnborg <sam@ravnborg.org>
Acked-by: Michal Nazarewicz <mina86@mina86.com>
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Felipe Balbi <balbi@ti.com>
此提交包含在:
Sebastian Andrzej Siewior
2012-09-06 20:11:03 +02:00
提交者 Felipe Balbi
父節點 1e1a27c325
當前提交 c2ec75c251
共有 18 個檔案被更改,包括 18 行新增18 行删除

查看文件

@@ -198,7 +198,7 @@ static int __exit audio_unbind(struct usb_composite_dev *cdev)
return 0;
}
static struct usb_composite_driver audio_driver = {
static __refdata struct usb_composite_driver audio_driver = {
.name = "g_audio",
.dev = &device_desc,
.strings = audio_strings,