mirror of
https://github.com/torvalds/linux.git
synced 2026-05-24 07:03:03 +02:00
usb: misc: usb3503: use dev_get_platdata()
Use the wrapper function for retrieving the platform data instead of accessing dev->platform_data directly. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ace0a5f947
commit
b977a3068a
|
|
@ -179,7 +179,7 @@ static int usb3503_switch_mode(struct usb3503 *hub, enum usb3503_mode mode)
|
|||
|
||||
static int usb3503_probe(struct i2c_client *i2c, const struct i2c_device_id *id)
|
||||
{
|
||||
struct usb3503_platform_data *pdata = i2c->dev.platform_data;
|
||||
struct usb3503_platform_data *pdata = dev_get_platdata(&i2c->dev);
|
||||
struct device_node *np = i2c->dev.of_node;
|
||||
struct usb3503 *hub;
|
||||
int err = -ENOMEM;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user