From: Alex Elder Date: Wed, 27 May 2015 19:45:58 +0000 (-0500) Subject: greybus: greybus_protocols: fix guard tag X-Git-Tag: v4.9-rc1~119^2~378^2~21^2~1516 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=012d7d4fbeb2b261c679f58e39b31657ffb0191d;p=linux.git 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 --- 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 */