The patch titled input: Logitech TrackMan trackball support has been added to the -mm tree. Its filename is input-logitech-trackman-trackball-support.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: input: Logitech TrackMan trackball support From: Zbigniew Luszpinski <zbiggy@xxxxx> My patch makes TrackMan known for kernel 2.6.16.18. After applying patch kenel 2.6.16.18 says: input: PS2++ Logitech TrackMan Whell as /class/input/input1 Cc: Dmitry Torokhov <dtor_core@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/input/mouse/logips2pp.c | 6 ++++++ 1 file changed, 6 insertions(+) diff -puN drivers/input/mouse/logips2pp.c~input-logitech-trackman-trackball-support drivers/input/mouse/logips2pp.c --- devel/drivers/input/mouse/logips2pp.c~input-logitech-trackman-trackball-support 2006-05-29 13:23:56.000000000 -0700 +++ devel-akpm/drivers/input/mouse/logips2pp.c 2006-05-29 13:23:56.000000000 -0700 @@ -19,6 +19,7 @@ #define PS2PP_KIND_WHEEL 1 #define PS2PP_KIND_MX 2 #define PS2PP_KIND_TP3 3 +#define PS2PP_KIND_TBW 4 /* Logitech mouse features */ #define PS2PP_WHEEL 0x01 @@ -223,6 +224,7 @@ static struct ps2pp_info *get_model_info { 73, 0, PS2PP_SIDE_BTN }, { 75, PS2PP_KIND_WHEEL, PS2PP_WHEEL }, { 76, PS2PP_KIND_WHEEL, PS2PP_WHEEL }, + { 79, PS2PP_KIND_TBW, PS2PP_WHEEL }, /* Trackball with wheel */ { 80, PS2PP_KIND_WHEEL, PS2PP_SIDE_BTN | PS2PP_WHEEL }, { 81, PS2PP_KIND_WHEEL, PS2PP_WHEEL }, { 83, PS2PP_KIND_WHEEL, PS2PP_WHEEL }, @@ -298,6 +300,10 @@ static void ps2pp_set_model_properties(s psmouse->name = "TouchPad 3"; break; + case PS2PP_KIND_TBW: + psmouse->name = "TrackMan Wheel"; + break; + default: /* * Set name to "Mouse" only when using PS2++, _ Patches currently in -mm which might be from zbiggy@xxxxx are input-logitech-trackman-trackball-support.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