linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Cc: Henrik Rydberg <rydberg@euromail.se>,
	Hans de Goede <hdegoede@redhat.com>,
	Peter Hutterer <peter.hutterer@who-t.net>,
	linux-input@vger.kernel.org, linux-kernel@vger.kernel.org,
	Daniel Kurtz <djkurtz@chromium.org>,
	Chung-yih Wang <cywang@chromium.org>
Subject: Re: [PATCH 2/2] Input: synaptics: remove duplicated code
Date: Fri, 31 Oct 2014 09:52:26 -0700	[thread overview]
Message-ID: <20141031165226.GC32331@dtor-ws> (raw)
In-Reply-To: <1414693987-6059-2-git-send-email-benjamin.tissoires@redhat.com>

+ Daniel & Chung-yih

On Thu, Oct 30, 2014 at 02:33:07PM -0400, Benjamin Tissoires wrote:
> synaptics_profile_sensor_process() and synaptics_report_mt_data() now
> share the exact same code. Remove one implementation and rely on the
> other where it was used.
> 
> Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
> ---
>  drivers/input/mouse/synaptics.c | 38 +-------------------------------------
>  1 file changed, 1 insertion(+), 37 deletions(-)
> 
> diff --git a/drivers/input/mouse/synaptics.c b/drivers/input/mouse/synaptics.c
> index fd89249..8ae1841 100644
> --- a/drivers/input/mouse/synaptics.c
> +++ b/drivers/input/mouse/synaptics.c
> @@ -851,42 +851,6 @@ static void synaptics_image_sensor_process(struct psmouse *psmouse,
>  	synaptics_report_mt_data(psmouse, sgm, num_fingers);
>  }
>  
> -static void synaptics_profile_sensor_process(struct psmouse *psmouse,
> -					     struct synaptics_hw_state *sgm,
> -					     int num_fingers)
> -{
> -	struct input_dev *dev = psmouse->dev;
> -	struct synaptics_data *priv = psmouse->private;
> -	struct synaptics_hw_state *hw[2] = { sgm, &priv->agm };
> -	struct input_mt_pos pos[2];
> -	int slot[2], nsemi, i;
> -
> -	nsemi = clamp_val(num_fingers, 0, 2);
> -
> -	for (i = 0; i < nsemi; i++) {
> -		pos[i].x = hw[i]->x;
> -		pos[i].y = synaptics_invert_y(hw[i]->y);
> -	}
> -
> -	input_mt_assign_slots(dev, slot, pos, nsemi);
> -
> -	for (i = 0; i < nsemi; i++) {
> -		input_mt_slot(dev, slot[i]);
> -		input_mt_report_slot_state(dev, MT_TOOL_FINGER, true);
> -		input_report_abs(dev, ABS_MT_POSITION_X, pos[i].x);
> -		input_report_abs(dev, ABS_MT_POSITION_Y, pos[i].y);
> -		input_report_abs(dev, ABS_MT_PRESSURE, hw[i]->z);
> -	}
> -
> -	input_mt_drop_unused(dev);
> -	input_mt_report_pointer_emulation(dev, false);
> -	input_mt_report_finger_count(dev, num_fingers);
> -
> -	synaptics_report_buttons(psmouse, sgm);
> -
> -	input_sync(dev);
> -}
> -
>  /*
>   *  called for each full received packet from the touchpad
>   */
> @@ -951,7 +915,7 @@ static void synaptics_process_packet(struct psmouse *psmouse)
>  	}
>  
>  	if (cr48_profile_sensor) {
> -		synaptics_profile_sensor_process(psmouse, &hw, num_fingers);
> +		synaptics_report_mt_data(psmouse, &hw, num_fingers);
>  		return;
>  	}
>  
> -- 
> 2.1.0
> 

-- 
Dmitry

  reply	other threads:[~2014-10-31 16:52 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-10-30 18:33 [PATCH 1/2] Input: synaptics: Use in-kernel tracking for reporting mt data Benjamin Tissoires
2014-10-30 18:33 ` [PATCH 2/2] Input: synaptics: remove duplicated code Benjamin Tissoires
2014-10-31 16:52   ` Dmitry Torokhov [this message]
2014-10-31 16:51 ` [PATCH 1/2] Input: synaptics: Use in-kernel tracking for reporting mt data Dmitry Torokhov
2014-11-20 19:42   ` Benjamin Tissoires
2014-12-08 18:01     ` Benjamin Tissoires
2014-12-29 22:26       ` Dmitry Torokhov
2015-01-05 15:30         ` Benjamin Tissoires

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20141031165226.GC32331@dtor-ws \
    --to=dmitry.torokhov@gmail.com \
    --cc=benjamin.tissoires@redhat.com \
    --cc=cywang@chromium.org \
    --cc=djkurtz@chromium.org \
    --cc=hdegoede@redhat.com \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=peter.hutterer@who-t.net \
    --cc=rydberg@euromail.se \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).