The patch titled input: Logitech TrackMan trackball support has been removed from the -mm tree. Its filename is input-logitech-trackman-trackball-support.patch This patch was probably dropped from -mm because it has now been merged into a subsystem tree or into Linus's tree, or because it was folded into its parent patch in the -mm tree. ------------------------------------------------------ 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-06-01 20:26:40.000000000 -0700 +++ devel-akpm/drivers/input/mouse/logips2pp.c 2006-06-01 20:26:40.000000000 -0700 @@ -20,6 +20,7 @@ #define PS2PP_KIND_MX 2 #define PS2PP_KIND_TP3 3 #define PS2PP_KIND_TRACKMAN 4 +#define PS2PP_KIND_TBW 5 /* Logitech mouse features */ #define PS2PP_WHEEL 0x01 @@ -224,6 +225,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 }, + { 77, PS2PP_KIND_TBW, PS2PP_WHEEL }, /* Trackball with wheel */ { 79, PS2PP_KIND_TRACKMAN, PS2PP_WHEEL }, /* TrackMan with wheel */ { 80, PS2PP_KIND_WHEEL, PS2PP_SIDE_BTN | PS2PP_WHEEL }, { 81, PS2PP_KIND_WHEEL, PS2PP_WHEEL }, @@ -304,6 +306,10 @@ static void ps2pp_set_model_properties(s psmouse->name = "TrackMan"; 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 origin.patch 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