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

Commit d9f03831 authored by Andrew Morton's avatar Andrew Morton Committed by Dmitry Torokhov
Browse files

Input: iforce - fix 'unused variable' warning



drivers/input/joystick/iforce/iforce-packets.c: In function `iforce_get_id_packet':
drivers/input/joystick/iforce/iforce-packets.c:249: warning: unused variable `status'

Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarDmitry Torokhov <dtor@mail.ru>
parent e3758b2a
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -246,13 +246,12 @@ void iforce_process_packet(struct iforce *iforce, u16 cmd, unsigned char *data)

int iforce_get_id_packet(struct iforce *iforce, char *packet)
{
	int status;

	switch (iforce->bus) {

	case IFORCE_USB:

	case IFORCE_USB: {
#ifdef CONFIG_JOYSTICK_IFORCE_USB
		int status;

		iforce->cr.bRequest = packet[0];
		iforce->ctrl->dev = iforce->usbdev;

@@ -273,6 +272,7 @@ int iforce_get_id_packet(struct iforce *iforce, char *packet)
#else
		dbg("iforce_get_id_packet: iforce->bus = USB!");
#endif
		}
		break;

	case IFORCE_232: