> -----Original Message----- > From: Pali Rohár [mailto:pali.rohar@xxxxxxxxx] > Sent: Tuesday, October 17, 2017 1:45 PM > To: Limonciello, Mario <Mario_Limonciello@xxxxxxxx> > Cc: dvhart@xxxxxxxxxxxxx; Andy Shevchenko <andy.shevchenko@xxxxxxxxx>; > LKML <linux-kernel@xxxxxxxxxxxxxxx>; platform-driver-x86@xxxxxxxxxxxxxxx; Andy > Lutomirski <luto@xxxxxxxxxx>; quasisec@xxxxxxxxxx; rjw@xxxxxxxxxxxxx; > mjg59@xxxxxxxxxx; hch@xxxxxx; Greg KH <greg@xxxxxxxxx>; Alan Cox > <gnomes@xxxxxxxxxxxxxxxxxxx> > Subject: Re: [PATCH v9 03/17] platform/x86: dell-wmi: clean up wmi descriptor > check > > On Tuesday 17 October 2017 13:21:47 Mario Limonciello wrote: > > Some cases the wrong type was used for errors and checks can be > > done more cleanly. > > > > Signed-off-by: Mario Limonciello <mario.limonciello@xxxxxxxx> > > Reviewed-by: Edward O'Callaghan <quasisec@xxxxxxxxxx> > > Suggested-by: Andy Shevchenko <andy.shevchenko@xxxxxxxxx> > > --- > > drivers/platform/x86/dell-wmi.c | 10 +++++----- > > 1 file changed, 5 insertions(+), 5 deletions(-) > > > > diff --git a/drivers/platform/x86/dell-wmi.c b/drivers/platform/x86/dell-wmi.c > > index 2cfaaa8faf0a..ece2fe341f01 100644 > > --- a/drivers/platform/x86/dell-wmi.c > > +++ b/drivers/platform/x86/dell-wmi.c > > @@ -663,19 +663,19 @@ static int dell_wmi_check_descriptor_buffer(struct > wmi_device *wdev) > > > > buffer = (u32 *)obj->buffer.pointer; > > > > - if (buffer[0] != 0x4C4C4544 && buffer[1] != 0x494D5720) { > > - dev_err(&wdev->dev, "Dell descriptor buffer has invalid signature > (%*ph)\n", > > - 8, buffer); > > + if (strncmp(obj->string.pointer, "DELL WMI", 8) != 0) { > > + dev_err(&wdev->dev, "Dell descriptor buffer has invalid signature > (%8ph)\n", > > + buffer); > > ret = -EINVAL; > > goto out; > > } > > > > if (buffer[2] != 0 && buffer[2] != 1) > > - dev_warn(&wdev->dev, "Dell descriptor buffer has unknown > version (%d)\n", > > + dev_warn(&wdev->dev, "Dell descriptor buffer has unknown > version (%u)\n", > > buffer[2]); > > To be correct, buffer[2] is of type "u32", not of type "unsigned". So > this patch does not fix it properly. > What's the proper solution then? Cast buffer[2] to a known type length like unsigned long and use %lu?