diff options
author | Richard Leitner <richard.leitner@skidata.com> | 2014-10-08 17:24:15 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2014-10-09 18:27:24 -0400 |
commit | bf1d50fa74df0339c925aa7e2ff9de60a42c30be (patch) | |
tree | 400ccefae0b821b6eb77bde90e9b094176e29546 /drivers/input | |
parent | 2c9a9cfec04f2c6ed7b4e607cd53ca903b2c4642 (diff) |
Input: avoid negative input device numbers
Fix the format string for input device name generation to avoid negative
device numbers when the id exceeds the maximum signed integer value.
Signed-off-by: Richard Leitner <richard.leitner@skidata.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/input.c b/drivers/input/input.c index d2e06cc7e179..0f175f55782b 100644 --- a/drivers/input/input.c +++ b/drivers/input/input.c | |||
@@ -1789,7 +1789,7 @@ struct input_dev *input_allocate_device(void) | |||
1789 | INIT_LIST_HEAD(&dev->h_list); | 1789 | INIT_LIST_HEAD(&dev->h_list); |
1790 | INIT_LIST_HEAD(&dev->node); | 1790 | INIT_LIST_HEAD(&dev->node); |
1791 | 1791 | ||
1792 | dev_set_name(&dev->dev, "input%ld", | 1792 | dev_set_name(&dev->dev, "input%lu", |
1793 | (unsigned long) atomic_inc_return(&input_no) - 1); | 1793 | (unsigned long) atomic_inc_return(&input_no) - 1); |
1794 | 1794 | ||
1795 | __module_get(THIS_MODULE); | 1795 | __module_get(THIS_MODULE); |