mirror of
https://github.com/torvalds/linux.git
synced 2026-05-29 17:43:52 +02:00
Input: gunze - switch to use scnprintf() to suppress truncation warning
Switch the driver to use scnprintf() to avoid warnings about potential truncation of "phys" field which we can tolerate. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Link: https://patch.msgid.link/20260113082901.83668-1-andriy.shevchenko@linux.intel.com Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
parent
be1735de10
commit
ed9b2fc10d
|
|
@ -106,7 +106,7 @@ static int gunze_connect(struct serio *serio, struct serio_driver *drv)
|
|||
|
||||
gunze->serio = serio;
|
||||
gunze->dev = input_dev;
|
||||
snprintf(gunze->phys, sizeof(serio->phys), "%s/input0", serio->phys);
|
||||
scnprintf(gunze->phys, sizeof(serio->phys), "%s/input0", serio->phys);
|
||||
|
||||
input_dev->name = "Gunze AHL-51S TouchScreen";
|
||||
input_dev->phys = gunze->phys;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user