Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5cc0dfe0 authored by Dmitry Torokhov's avatar Dmitry Torokhov
Browse files

Input: tca8418_keypad - move device ID tables closer to where they are used



This matches structure of most other input drivers.

Reviewed-by: default avatarAlban Bedel <alban.bedel@avionic-design.de>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent cdbe8a86
Loading
Loading
Loading
Loading
+14 −15
Original line number Original line Diff line number Diff line
@@ -110,21 +110,6 @@
#define KEY_EVENT_CODE		0x7f
#define KEY_EVENT_CODE		0x7f
#define KEY_EVENT_VALUE		0x80
#define KEY_EVENT_VALUE		0x80



static const struct i2c_device_id tca8418_id[] = {
	{ TCA8418_NAME, 8418, },
	{ }
};
MODULE_DEVICE_TABLE(i2c, tca8418_id);

#ifdef CONFIG_OF
static const struct of_device_id tca8418_dt_ids[] __devinitconst = {
	{ .compatible = "ti,tca8418", },
	{ }
};
MODULE_DEVICE_TABLE(of, tca8418_dt_ids);
#endif

struct tca8418_keypad {
struct tca8418_keypad {
	unsigned int irq;
	unsigned int irq;
	unsigned int row_shift;
	unsigned int row_shift;
@@ -419,6 +404,20 @@ static int tca8418_keypad_remove(struct i2c_client *client)
	return 0;
	return 0;
}
}


static const struct i2c_device_id tca8418_id[] = {
	{ TCA8418_NAME, 8418, },
	{ }
};
MODULE_DEVICE_TABLE(i2c, tca8418_id);

#ifdef CONFIG_OF
static const struct of_device_id tca8418_dt_ids[] __devinitconst = {
	{ .compatible = "ti,tca8418", },
	{ }
};
MODULE_DEVICE_TABLE(of, tca8418_dt_ids);
#endif

static struct i2c_driver tca8418_keypad_driver = {
static struct i2c_driver tca8418_keypad_driver = {
	.driver = {
	.driver = {
		.name	= TCA8418_NAME,
		.name	= TCA8418_NAME,