From: Dmitry Torokhov Date: Wed, 9 Nov 2005 05:34:29 +0000 (-0800) Subject: [PATCH] Input: fix 'uniq' reporting in hotplug handler X-Git-Tag: v2.6.15-rc1~395 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=08de1f0461ad40136e7373cf85e2f3c221a9ad9a;p=~emulex%2Finfiniband.git [PATCH] Input: fix 'uniq' reporting in hotplug handler Input: fix 'uniq' reporting in hotplug handler Signed-off-by: Dmitry Torokhov Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/input/input.c b/drivers/input/input.c index 0879915b14d..c8ae2bb054e 100644 --- a/drivers/input/input.c +++ b/drivers/input/input.c @@ -669,7 +669,7 @@ static int input_dev_hotplug(struct class_device *cdev, char **envp, INPUT_ADD_HOTPLUG_VAR("NAME=\"%s\"", dev->name); if (dev->phys) INPUT_ADD_HOTPLUG_VAR("PHYS=\"%s\"", dev->phys); - if (dev->phys) + if (dev->uniq) INPUT_ADD_HOTPLUG_VAR("UNIQ=\"%s\"", dev->uniq); INPUT_ADD_HOTPLUG_BM_VAR("EV=", dev->evbit, EV_MAX);