#ifndef US122L_H #define US122L_H struct us122l { struct usb_device *dev; int card_index; int stride; struct usb_stream_kernel sk; struct mutex mutex; struct file *first; unsigned second_periods_polled; struct file *master; struct file *slave; struct list_head midi_list; atomic_t mmap_count; }; #define US122L(c) ((struct us122l *)(c)->private_data) #define NAME_ALLCAPS "US-122L" #define USB_ID_US122L 0x800E #define USB_ID_US144 0x800F #define USB_ID_US122MKII 0x8021 #define USB_ID_US144MKII 0x8020 #endif t-next.git' title='net-next.git Git repository'/>
summaryrefslogtreecommitdiff
path: root/net/802
diff options
context:
space:
mode:
authorManuel Lauss <manuel.lauss@gmail.com>2017-01-24 10:12:00 -0800
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2017-01-24 10:27:34 -0800
commit3f5c34c6d4688b3b7e1dbc7bbc68a2f03a0d6b0c (patch)
treeb9387d85890c4466d9cf3d3145c95e0b07235234 /net/802
parent62ed8ceda1699acae01b666497f004bfd3d67a6f (diff)
Input: wm97xx - make missing platform data non-fatal
Commit 6480af4915d6 ("power_supply: wm97xx_battery: use power_supply_get_drvdata") made wm97xx platform data mandatory, although it's still optional. This patch fixes an oops during driver probe on one of my MIPS boards with a wm9712. Signed-off-by: Manuel Lauss <manuel.lauss@gmail.com> Reviewed-by: Robert Jarzmik <robert.jarzmik@free.fr> Acked-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'net/802')