diff --git a/Makefile.common b/Makefile.common
index 2754a843b9..2ff4ad2515 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -207,7 +207,6 @@ OBJ += frontend/frontend.o \
$(LIBRETRO_COMM_DIR)/hash/rhash.o \
$(LIBRETRO_COMM_DIR)/audio/audio_mixer.o \
input/common/input_hid_common.o \
- input/input_driver.o \
input/input_mapper.o \
led/led_driver.o \
led/drivers/led_null.o \
diff --git a/griffin/griffin.c b/griffin/griffin.c
index 41005fccb8..89de089b2f 100644
--- a/griffin/griffin.c
+++ b/griffin/griffin.c
@@ -888,7 +888,6 @@ DRIVERS
#include "../gfx/video_crt_switch.c"
#include "../gfx/video_display_server.c"
#include "../gfx/video_coord_array.c"
-#include "../input/input_driver.c"
#include "../libretro-common/audio/audio_mixer.c"
/*============================================================
diff --git a/input/input_driver.c b/input/input_driver.c
deleted file mode 100644
index d7aab751d7..0000000000
--- a/input/input_driver.c
+++ /dev/null
@@ -1,3195 +0,0 @@
-/* RetroArch - A frontend for libretro.
- * Copyright (C) 2010-2014 - Hans-Kristian Arntzen
- * Copyright (C) 2011-2017 - Daniel De Matteis
- * Copyright (C) 2016-2019 - Brad Parker
- *
- * RetroArch is free software: you can redistribute it and/or modify it under the terms
- * of the GNU General Public License as published by the Free Software Found-
- * ation, either version 3 of the License, or (at your option) any later version.
- *
- * RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
- * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- * PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along with RetroArch.
- * If not, see .
- */
-
-#include
-#include
-#include
-#include
-
-#include
-#include
-#include
-#include
-#include
-#include