From 973650a4722ec6d8d50a09bbae6e84c9ac41177c Mon Sep 17 00:00:00 2001 From: Hans Petter Selasky Date: Mon, 24 Feb 2014 19:19:35 +0000 Subject: [PATCH] Fix compiler warning. Reported by: David Wolfskill MFC after: 2 weeks --- sys/dev/usb/input/atp.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/sys/dev/usb/input/atp.c b/sys/dev/usb/input/atp.c index bd90aef55157..832c1e62aaf4 100644 --- a/sys/dev/usb/input/atp.c +++ b/sys/dev/usb/input/atp.c @@ -794,11 +794,6 @@ static void atp_convert_to_slide(struct atp_softc *, atp_stroke_t *); static void atp_reset_buf(struct atp_softc *); static void atp_add_to_queue(struct atp_softc *, int, int, int, uint32_t); -static const sensor_data_interpreter_t atp_sensor_data_interpreters[TRACKPAD_FAMILY_MAX] = { - [TRACKPAD_FAMILY_FOUNTAIN_GEYSER] = fg_interpret_sensor_data, - [TRACKPAD_FAMILY_WELLSPRING] = wsp_interpret_sensor_data, -}; - /* Device methods. */ static device_probe_t atp_probe; static device_attach_t atp_attach;