diff --git a/drivers/staging/greybus/Makefile b/drivers/staging/greybus/Makefile index 29aa4d665877..08cdaf1affb8 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 8216c9365503..f243dd2c1835 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"