From: Benjamin Romer Date: Thu, 23 Oct 2014 18:30:57 +0000 (-0400) Subject: staging: unisys: fix CamelCase in ETH_IS_LOCALLY_ADMINISTERED X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=f43d9b50cded1d3a6908679a57bd9d83e1b8149a;p=deliverable%2Flinux.git staging: unisys: fix CamelCase in ETH_IS_LOCALLY_ADMINISTERED Fix the CamelCase parameter in this macro: Address => address Signed-off-by: Benjamin Romer Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/unisys/common-spar/include/channels/iochannel.h b/drivers/staging/unisys/common-spar/include/channels/iochannel.h index 3f30969098c3..6ee45066742f 100644 --- a/drivers/staging/unisys/common-spar/include/channels/iochannel.h +++ b/drivers/staging/unisys/common-spar/include/channels/iochannel.h @@ -191,8 +191,8 @@ enum net_types { #define MAX_MACADDR_LEN 6 /* number of bytes in MAC address */ #endif /* MAX_MACADDR_LEN */ -#define ETH_IS_LOCALLY_ADMINISTERED(Address) \ - (((u8 *)(Address))[0] & ((u8) 0x02)) +#define ETH_IS_LOCALLY_ADMINISTERED(address) \ + (((u8 *)(address))[0] & ((u8)0x02)) #define NIC_VENDOR_ID 0x0008000B /* various types of scsi task mgmt commands */