diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-08-08 23:39:59 -0700 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2011-08-08 23:54:57 -0700 |
commit | cd566c64f50e568c0ac3c13bdd15f523631ce845 (patch) | |
tree | faa3afeb4fab715ccd3dc80788c7625ee6adcb14 | |
parent | 18b08c55a9b04c8783420fb6657599ad724459cc (diff) | |
download | talos-op-linux-cd566c64f50e568c0ac3c13bdd15f523631ce845.tar.gz talos-op-linux-cd566c64f50e568c0ac3c13bdd15f523631ce845.zip |
Input: mma8450 - fix module device table type
The module device table for of_device_id should use "of" type.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
-rw-r--r-- | drivers/input/misc/mma8450.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/misc/mma8450.c b/drivers/input/misc/mma8450.c index 6c76cf792991..0794778295fc 100644 --- a/drivers/input/misc/mma8450.c +++ b/drivers/input/misc/mma8450.c @@ -234,7 +234,7 @@ static const struct of_device_id mma8450_dt_ids[] = { { .compatible = "fsl,mma8450", }, { /* sentinel */ } }; -MODULE_DEVICE_TABLE(i2c, mma8450_dt_ids); +MODULE_DEVICE_TABLE(of, mma8450_dt_ids); static struct i2c_driver mma8450_driver = { .driver = { |