mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 20:48:49 +08:00
Input: gpio-keys - add support for setting device name
This patch allows to set a device name which helps distinguishing several gpio-keys devices. Signed-off-by: Alexander Stein <alexander.stein@informatik.tu-chemnitz.de> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
parent
92a47674f5
commit
467112777c
@ -473,7 +473,7 @@ static int __devinit gpio_keys_probe(struct platform_device *pdev)
|
||||
platform_set_drvdata(pdev, ddata);
|
||||
input_set_drvdata(input, ddata);
|
||||
|
||||
input->name = pdev->name;
|
||||
input->name = pdata->name ? : pdev->name;
|
||||
input->phys = "gpio-keys/input0";
|
||||
input->dev.parent = &pdev->dev;
|
||||
input->open = gpio_keys_open;
|
||||
|
@ -22,6 +22,7 @@ struct gpio_keys_platform_data {
|
||||
unsigned int rep:1; /* enable input subsystem auto repeat */
|
||||
int (*enable)(struct device *dev);
|
||||
void (*disable)(struct device *dev);
|
||||
const char *name; /* input device name */
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user