From 3bdec69931d889f2ee5dccafbc8cee6a364bb249 Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Fri, 12 Dec 2014 17:10:16 -0500 Subject: [PATCH] greybus: bundle: rename interface.[c|h] to bundle.[c|h] We are renameing the "interface" term to "bundle" so rename the files before we start changing structure names to make it easier for people to see what really is happening in the changes. Signed-off-by: Greg Kroah-Hartman Reviewed-by: Alex Elder --- drivers/staging/greybus/Makefile | 2 +- drivers/staging/greybus/{interface.c => bundle.c} | 0 drivers/staging/greybus/{interface.h => bundle.h} | 0 drivers/staging/greybus/greybus.h | 2 +- 4 files changed, 2 insertions(+), 2 deletions(-) rename drivers/staging/greybus/{interface.c => bundle.c} (100%) rename drivers/staging/greybus/{interface.h => bundle.h} (100%) diff --git a/drivers/staging/greybus/Makefile b/drivers/staging/greybus/Makefile index 29aa4d6..08cdaf1 100644 --- a/drivers/staging/greybus/Makefile +++ b/drivers/staging/greybus/Makefile @@ -3,7 +3,7 @@ greybus-y := core.o \ ap.o \ manifest.o \ interface_block.o \ - interface.o \ + bundle.o \ connection.o \ protocol.o \ operation.o \ diff --git a/drivers/staging/greybus/interface.c b/drivers/staging/greybus/bundle.c similarity index 100% rename from drivers/staging/greybus/interface.c rename to drivers/staging/greybus/bundle.c diff --git a/drivers/staging/greybus/interface.h b/drivers/staging/greybus/bundle.h similarity index 100% rename from drivers/staging/greybus/interface.h rename to drivers/staging/greybus/bundle.h diff --git a/drivers/staging/greybus/greybus.h b/drivers/staging/greybus/greybus.h index 8216c93..f243dd2 100644 --- a/drivers/staging/greybus/greybus.h +++ b/drivers/staging/greybus/greybus.h @@ -25,7 +25,7 @@ #include "greybus_manifest.h" #include "manifest.h" #include "interface_block.h" -#include "interface.h" +#include "bundle.h" #include "connection.h" #include "protocol.h" #include "operation.h" -- 2.7.4