From ffc1c1da7fc39e80d8a9a546fec570cd8438221a Mon Sep 17 00:00:00 2001 From: Mark Hounschell Date: Wed, 19 Feb 2014 13:12:14 -0500 Subject: [PATCH] staging: dgap: Rename driver Renames driver file dgap_driver.c and dgap_driver.h to dgap.c and dgap.h because we are now single source and include file and better fits kernel naming conventions. Signed-off-by: Mark Hounschell Signed-off-by: Greg Kroah-Hartman --- drivers/staging/dgap/Makefile | 4 ---- drivers/staging/dgap/{dgap_driver.c => dgap.c} | 2 +- drivers/staging/dgap/{dgap_driver.h => dgap.h} | 0 3 files changed, 1 insertion(+), 5 deletions(-) rename drivers/staging/dgap/{dgap_driver.c => dgap.c} (99%) rename drivers/staging/dgap/{dgap_driver.h => dgap.h} (100%) diff --git a/drivers/staging/dgap/Makefile b/drivers/staging/dgap/Makefile index b7b5778add17..0063d044ca71 100644 --- a/drivers/staging/dgap/Makefile +++ b/drivers/staging/dgap/Makefile @@ -1,5 +1 @@ obj-$(CONFIG_DGAP) += dgap.o - - -dgap-objs := dgap_driver.o - diff --git a/drivers/staging/dgap/dgap_driver.c b/drivers/staging/dgap/dgap.c similarity index 99% rename from drivers/staging/dgap/dgap_driver.c rename to drivers/staging/dgap/dgap.c index 21b0f90fbee8..6f07e271184d 100644 --- a/drivers/staging/dgap/dgap_driver.c +++ b/drivers/staging/dgap/dgap.c @@ -49,7 +49,7 @@ #include #include -#include "dgap_driver.h" +#include "dgap.h" #define init_MUTEX(sem) sema_init(sem, 1) #define DECLARE_MUTEX(name) \ diff --git a/drivers/staging/dgap/dgap_driver.h b/drivers/staging/dgap/dgap.h similarity index 100% rename from drivers/staging/dgap/dgap_driver.h rename to drivers/staging/dgap/dgap.h -- 2.34.1