The patch titled input: ucb1400: set up driver's name to show in sysfs has been added to the -mm tree. Its filename is input-ucb1400-set-up-drivers-name-to-show-in-sysfs.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: input: ucb1400: set up driver's name to show in sysfs From: Cliff Brake <cbrake@xxxxxxxxxxxxxxx> 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 <cbrake@xxxxxxxxxxxxxxx> Signed-off-by: Dmitry Torokhov <dtor@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/input/touchscreen/ucb1400_ts.c | 1 + 1 file changed, 1 insertion(+) diff -puN drivers/input/touchscreen/ucb1400_ts.c~input-ucb1400-set-up-drivers-name-to-show-in-sysfs drivers/input/touchscreen/ucb1400_ts.c --- a/drivers/input/touchscreen/ucb1400_ts.c~input-ucb1400-set-up-drivers-name-to-show-in-sysfs +++ a/drivers/input/touchscreen/ucb1400_ts.c @@ -553,6 +553,7 @@ static int ucb1400_ts_remove(struct devi } static struct device_driver ucb1400_ts_driver = { + .name = "ucb1400_ts", .owner = THIS_MODULE, .bus = &ac97_bus_type, .probe = ucb1400_ts_probe, _ Patches currently in -mm which might be from cbrake@xxxxxxxxxxxxxxx are input-ucb1400-set-up-drivers-name-to-show-in-sysfs.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html