From 012d7d4fbeb2b261c679f58e39b31657ffb0191d Mon Sep 17 00:00:00 2001 From: Alex Elder Date: Wed, 27 May 2015 14:45:58 -0500 Subject: [PATCH] greybus: greybus_protocols: fix guard tag I neglected to update the "#ifndef/#define" when I renamed "greybus_protocols.h". Fix that. Signed-off-by: Alex Elder Reviewed-by: Viresh Kumar Signed-off-by: Greg Kroah-Hartman --- drivers/staging/greybus/greybus_protocols.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/greybus/greybus_protocols.h b/drivers/staging/greybus/greybus_protocols.h index 305c33d08646..32d84640e295 100644 --- a/drivers/staging/greybus/greybus_protocols.h +++ b/drivers/staging/greybus/greybus_protocols.h @@ -49,8 +49,8 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef __GB_GPBRIDGE_H__ -#define __GB_GPBRIDGE_H__ +#ifndef __GREYBUS_PROTOCOLS_H +#define __GREYBUS_PROTOCOLS_H /* I2C */ @@ -540,4 +540,4 @@ struct gb_svc_conn_destroy_request { }; /* connection destroy response has no payload */ -#endif /* __GB_GPBRIDGE_H__ */ +#endif /* __GREYBUS_PROTOCOLS_H */ -- 2.45.2