summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2014-08-27 12:57:42 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-08-30 13:01:37 -0700
commit92dae16fb42c33869aa6d1b9d4ef78a079235c5c (patch)
tree0a63f20dd21f4be8ef7a2258da762310edee77a7 /drivers
parenta00765a0dae0516e61d41bddfe7be609e085266f (diff)
downloadlinux-92dae16fb42c33869aa6d1b9d4ef78a079235c5c.tar.bz2
Staging: bcm: Bcmchar.c: Renamed variable: "ucRead" -> "read"
Signed-off-by: Matthias Beyer <mail@beyermatthias.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/bcm/Bcmchar.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/bcm/Bcmchar.c b/drivers/staging/bcm/Bcmchar.c
index c53da9d2ccdc..e05ebe248a13 100644
--- a/drivers/staging/bcm/Bcmchar.c
+++ b/drivers/staging/bcm/Bcmchar.c
@@ -643,7 +643,7 @@ static int bcm_char_ioctl_gpio_status_request(void __user *argp,
struct bcm_gpio_info gpio_info = {0};
struct bcm_ioctl_buffer io_buff;
ULONG bit = 0;
- UCHAR ucRead[4];
+ UCHAR read[4];
INT Status;
int bytes;
@@ -666,7 +666,7 @@ static int bcm_char_ioctl_gpio_status_request(void __user *argp,
/* Set the gpio output register */
bytes = rdmaltWithLock(ad, (UINT)GPIO_PIN_STATE_REGISTER,
- (PUINT)ucRead, sizeof(UINT));
+ (PUINT)read, sizeof(UINT));
if (bytes < 0) {
Status = bytes;