On Thu, Jul 20, 2017 at 08:56:48PM -0700, Alex Hung wrote: > Unsupported events is only useful for developers and does not meaningful > for users. Using dev_dbg makes more sense and reduces noise in kernel > messages. > > Signed-off-by: Alex Hung <alex.hung@xxxxxxxxxxxxx> > --- > drivers/platform/x86/intel-vbtn.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/platform/x86/intel-vbtn.c b/drivers/platform/x86/intel-vbtn.c > index 61f1063..10f92ac 100644 > --- a/drivers/platform/x86/intel-vbtn.c > +++ b/drivers/platform/x86/intel-vbtn.c > @@ -83,7 +83,7 @@ static void notify_handler(acpi_handle handle, u32 event, void *context) > } else if (sparse_keymap_report_event(priv->input_dev, event, 1, true)) { > return; > } > - dev_info(&device->dev, "unknown event index 0x%x\n", event); > + dev_dbg(&device->dev, "unknown event index 0x%x\n", event); info is the most common log level for these events in the platform driver x86 subsystem per 'git grep -i "unknown event"'. My take on this is that we want these to be reported by users, rather than rely on developers to find them all - especially as the developers only see a fraction of the affected hardware. Are you finding these to be causing a problem / or producing really excessive log messages? Andy, what are your thoughts? > } > > static int intel_vbtn_probe(struct platform_device *device) > -- > 2.7.4 > > -- Darren Hart VMware Open Source Technology Center