From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752900AbbDLWxP (ORCPT ); Sun, 12 Apr 2015 18:53:15 -0400 Received: from mail-ie0-f177.google.com ([209.85.223.177]:34879 "EHLO mail-ie0-f177.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752485AbbDLWxK (ORCPT ); Sun, 12 Apr 2015 18:53:10 -0400 Date: Sun, 12 Apr 2015 15:53:05 -0700 From: Dmitry Torokhov To: Hans de Goede Cc: kbuild test robot , Masaki Ota , kbuild-all@01.org, Pali =?iso-8859-1?Q?Roh=E1r?= , Yunkang Tang , linux-input@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH next] Input: alps_get_pkt_id_ss4_v2() can be static Message-ID: <20150412225101.GA15638@dtor-ws> References: <201504110955.4uEmNJDX%fengguang.wu@intel.com> <20150411012111.GA64853@snb> <5528BFEA.5080103@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5528BFEA.5080103@redhat.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, Apr 11, 2015 at 08:32:10AM +0200, Hans de Goede wrote: > Hi, > > On 04/11/2015 03:21 AM, kbuild test robot wrote: > > > >Signed-off-by: Fengguang Wu > > Ack, these should all be static: > > Acked-by: Hans de Goede > > Dmitry, can you please merge this one ? Yep, applied, thank you. > > Regards, > > Hans > > >--- > > alps.c | 6 +++--- > > 1 file changed, 3 insertions(+), 3 deletions(-) > > > >diff --git a/drivers/input/mouse/alps.c b/drivers/input/mouse/alps.c > >index ad741c0..3ef93ff 100644 > >--- a/drivers/input/mouse/alps.c > >+++ b/drivers/input/mouse/alps.c > >@@ -1093,7 +1093,7 @@ static void alps_process_packet_v7(struct psmouse *psmouse) > > alps_process_touchpad_packet_v7(psmouse); > > } > > > >-unsigned char alps_get_pkt_id_ss4_v2(unsigned char *byte) > >+static unsigned char alps_get_pkt_id_ss4_v2(unsigned char *byte) > > { > > unsigned char pkt_id = SS4_PACKET_ID_IDLE; > > > >@@ -2340,7 +2340,7 @@ static int alps_get_otp_values_ss4_v2(struct psmouse *psmouse, > > return 0; > > } > > > >-int alps_update_device_area_ss4_v2(unsigned char otp[][4], > >+static int alps_update_device_area_ss4_v2(unsigned char otp[][4], > > struct alps_data *priv) > > { > > int num_x_electrode; > >@@ -2365,7 +2365,7 @@ int alps_update_device_area_ss4_v2(unsigned char otp[][4], > > return 0; > > } > > > >-int alps_update_btn_info_ss4_v2(unsigned char otp[][4], struct alps_data *priv) > >+static int alps_update_btn_info_ss4_v2(unsigned char otp[][4], struct alps_data *priv) > > { > > > > unsigned char is_btnless; > > -- Dmitry