Input: tca8418_keypad - use dev_get_platdata() to retrieve platform data
We need to use proper accessor functions instead of directly poking into various structures. Reviewed-by: Alban Bedel <alban.bedel@avionic-design.de> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
parent
efce8a4121
commit
cdbe8a8637
1 changed files with 1 additions and 1 deletions
|
@ -283,7 +283,7 @@ static int tca8418_keypad_probe(struct i2c_client *client,
|
|||
{
|
||||
struct device *dev = &client->dev;
|
||||
const struct tca8418_keypad_platform_data *pdata =
|
||||
client->dev.platform_data;
|
||||
dev_get_platdata(dev);
|
||||
struct tca8418_keypad *keypad_data;
|
||||
struct input_dev *input;
|
||||
const struct matrix_keymap_data *keymap_data = NULL;
|
||||
|
|
Loading…
Reference in a new issue