Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 07f19e3d authored by Fengguang Wu's avatar Fengguang Wu Committed by Dmitry Torokhov
Browse files

Input: ALPS - make alps_get_pkt_id_ss4_v2() and others static

parent 8d289842
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -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,9 +2365,9 @@ 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;

	is_btnless = (otp[1][1] >> 3) & 0x01;