diff options
Diffstat (limited to 'drivers/input/touchscreen')
| -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 | ||
