From: Greg Kroah-Hartman Date: Fri, 12 Dec 2014 22:10:16 +0000 (-0500) Subject: greybus: bundle: rename interface.[c|h] to bundle.[c|h] X-Git-Tag: v4.9-rc1~119^2~378^2~21^2~1760 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=3bdec69931d889f2ee5dccafbc8cee6a364bb249;p=users%2Fjedix%2Flinux-maple.git 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 --- diff --git a/drivers/staging/greybus/Makefile b/drivers/staging/greybus/Makefile index 29aa4d6658778..08cdaf1affb8d 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 8216c9365503e..f243dd2c18355 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"