diff options
author | Daniel Kurtz <djkurtz@chromium.org> | 2012-06-28 09:08:15 -0400 |
---|---|---|
committer | Henrik Rydberg <rydberg@euromail.se> | 2012-06-29 09:58:04 -0400 |
commit | e0e0269f347ce89251ecf02ec4a209136bda258e (patch) | |
tree | 4a835bb2c9c2d72df5c7edb071dcf2cae7d4166b /drivers/input | |
parent | 23003a8496b3f8100ed215dfda438cece5745545 (diff) |
Input: atmel_mxt_ts - update driver ID info logging
Print unsigned values as '%u'.
Also, parse and print the firmware version in its canonical format, as
suggested by Nick Dyer.
Signed-off-by: Daniel Kurtz <djkurtz@chromium.org>
Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/touchscreen/atmel_mxt_ts.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/input/touchscreen/atmel_mxt_ts.c b/drivers/input/touchscreen/atmel_mxt_ts.c index fac379146546..7a839d106336 100644 --- a/drivers/input/touchscreen/atmel_mxt_ts.c +++ b/drivers/input/touchscreen/atmel_mxt_ts.c | |||
@@ -856,12 +856,12 @@ static int mxt_initialize(struct mxt_data *data) | |||
856 | info->matrix_ysize = val; | 856 | info->matrix_ysize = val; |
857 | 857 | ||
858 | dev_info(&client->dev, | 858 | dev_info(&client->dev, |
859 | "Family ID: %d Variant ID: %d Version: %d Build: %d\n", | 859 | "Family ID: %u Variant ID: %u Major.Minor.Build: %u.%u.%02X\n", |
860 | info->family_id, info->variant_id, info->version, | 860 | info->family_id, info->variant_id, info->version >> 4, |
861 | info->build); | 861 | info->version & 0xf, info->build); |
862 | 862 | ||
863 | dev_info(&client->dev, | 863 | dev_info(&client->dev, |
864 | "Matrix X Size: %d Matrix Y Size: %d Object Num: %d\n", | 864 | "Matrix X Size: %u Matrix Y Size: %u Object Num: %u\n", |
865 | info->matrix_xsize, info->matrix_ysize, | 865 | info->matrix_xsize, info->matrix_ysize, |
866 | info->object_num); | 866 | info->object_num); |
867 | 867 | ||