From: Cliff Brake Date: Tue, 10 Apr 2007 03:50:50 +0000 (-0400) Subject: [PATCH] Input: ucb1400 - set up driver's name to show in sysfs X-Git-Tag: v2.6.21-rc7~26 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ff78b20235f84966c4b7962ce94e800adecc5383;p=karo-tx-linux.git [PATCH] Input: ucb1400 - set up driver's name to show in sysfs The UCB1400 is missing a name parameter in the device_driver struct. This causes missing information in the /sys tree and seems to cause other problems with the AC97 functionality. This was tested on a PXA270 system. Signed-off-by: Cliff Brake Signed-off-by: Dmitry Torokhov Signed-off-by: Linus Torvalds --- diff --git a/drivers/input/touchscreen/ucb1400_ts.c b/drivers/input/touchscreen/ucb1400_ts.c index c7db4032ef02..e8606c48c9c3 100644 --- a/drivers/input/touchscreen/ucb1400_ts.c +++ b/drivers/input/touchscreen/ucb1400_ts.c @@ -553,6 +553,7 @@ static int ucb1400_ts_remove(struct device *dev) } static struct device_driver ucb1400_ts_driver = { + .name = "ucb1400_ts", .owner = THIS_MODULE, .bus = &ac97_bus_type, .probe = ucb1400_ts_probe,