[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4E4DAB21.90309@cn.fujitsu.com>
Date: Fri, 19 Aug 2011 08:15:29 +0800
From: Wanlong Gao <gaowanlong@...fujitsu.com>
To: JJ Ding <jj_ding@....com.tw>, linux-input@...r.kernel.org,
linux-kernel@...r.kernel.org,
Dmitry Torokhov <dmitry.torokhov@...il.com>,
Aaron Huang <aaron_huang@....com.tw>,
Tom Lin <tom_lin@....com.tw>,
Eric Piel <E.A.B.Piel@...elft.nl>,
Daniel Kurtz <djkurtz@...omium.org>,
Chase Douglas <chase.douglas@...onical.com>,
Henrik Rydberg <rydberg@...omail.se>,
Alessandro Rubini <rubini@...l.unipv.it>
Subject: Re: [PATCH 6/6] Input: elantech - add v3 hardware support
On 08/18/2011 10:25 PM, Seth Forshee wrote:
> On Thu, Aug 18, 2011 at 08:58:53AM -0500, Seth Forshee wrote:
>> The case 3 code is nearly identical to case 2. How about this?
>>
>> case 2:
>> __set_bit(BTN_TOOL_QUADTAP, dev->keybit);
>> /* fall through */
>>
>> case 3:
>> input_set_abs_params(dev, ABS_X, x_min, x_max, 0, 0);
>> input_set_abs_params(dev, ABS_Y, y_min, y_max, 0, 0);
>> /* range of pressure and width is the same as v2 */
>> input_set_abs_params(dev, ABS_PRESSURE, ETP_PMIN_V2,
>> ETP_PMAX_V2, 0, 0);
>> input_set_abs_params(dev, ABS_TOOL_WIDTH, ETP_WMIN_V2,
>> ETP_WMAX_V2, 0, 0);
>> __set_bit(INPUT_PROP_SEMI_MT, dev->propbit);
>> input_mt_init_slots(dev, 2);
>> input_set_abs_params(dev, ABS_MT_POSITION_X, x_min, x_max, 0, 0);
>> input_set_abs_params(dev, ABS_MT_POSITION_Y, y_min, y_max, 0, 0);
>> break;
>
> Sorry, that should have been:
>
> case 2:
> __set_bit(BTN_TOOL_QUADTAP, dev->keybit);
> /* fall through */
>
> case 3:
> input_set_abs_params(dev, ABS_X, x_min, x_max, 0, 0);
> input_set_abs_params(dev, ABS_Y, y_min, y_max, 0, 0);
> if (etd->reports_pressure) {
> input_set_abs_params(dev, ABS_PRESSURE, ETP_PMIN_V2,
> ETP_PMAX_V2, 0, 0);
> input_set_abs_params(dev, ABS_TOOL_WIDTH, ETP_WMIN_V2,
> ETP_WMAX_V2, 0, 0);
> }
> __set_bit(INPUT_PROP_SEMI_MT, dev->propbit);
> input_mt_init_slots(dev, 2);
> input_set_abs_params(dev, ABS_MT_POSITION_X, x_min, x_max, 0, 0);
> input_set_abs_params(dev, ABS_MT_POSITION_Y, y_min, y_max, 0, 0);
> break;
simplify, seems good.
Thanks
-Wanlong Gao
> --
> To unsubscribe from this list: send the line "unsubscribe linux-input" in
> the body of a message to majordomo@...r.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists