projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
897c7b3
)
ir-core: Remove the quotation mark from the uevent names
author
Mauro Carvalho Chehab
<mchehab@redhat.com>
Sun, 11 Apr 2010 02:43:39 +0000
(23:43 -0300)
committer
Mauro Carvalho Chehab
<mchehab@redhat.com>
Wed, 19 May 2010 15:57:38 +0000
(12:57 -0300)
There's no need to use quotation marks at the uevent names for the
driver and table.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/IR/ir-sysfs.c
patch
|
blob
|
history
diff --git
a/drivers/media/IR/ir-sysfs.c
b/drivers/media/IR/ir-sysfs.c
index 073b5c0dc654d92af52ff7dc8ec53eabc3596b9c..ceec980552a4d7def2f1f9a80c0d7823b2445ce0 100644
(file)
--- a/
drivers/media/IR/ir-sysfs.c
+++ b/
drivers/media/IR/ir-sysfs.c
@@
-162,9
+162,9
@@
static int ir_dev_uevent(struct device *device, struct kobj_uevent_env *env)
struct ir_input_dev *ir_dev = dev_get_drvdata(device);
if (ir_dev->rc_tab.name)
- ADD_HOTPLUG_VAR("NAME=
\"%s\"
", ir_dev->rc_tab.name);
+ ADD_HOTPLUG_VAR("NAME=
%s
", ir_dev->rc_tab.name);
if (ir_dev->driver_name)
- ADD_HOTPLUG_VAR("DRV_NAME=
\"%s\"
", ir_dev->driver_name);
+ ADD_HOTPLUG_VAR("DRV_NAME=
%s
", ir_dev->driver_name);
return 0;
}