diff options
author | Kevin McKinney <klmckinney1@gmail.com> | 2012-05-26 12:05:08 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-06-04 21:09:21 -0700 |
commit | 2610c7a889103587ce9a5714291a53dbf5490c3c (patch) | |
tree | 3ee5d50f223fedbd4be726e562f57e6d5b14db50 /drivers/staging/bcm/Bcmchar.c | |
parent | 845bd532cda92afc3329dff753aefbe4164a8f83 (diff) | |
download | linux-2610c7a889103587ce9a5714291a53dbf5490c3c.tar.gz linux-2610c7a889103587ce9a5714291a53dbf5490c3c.tar.bz2 linux-2610c7a889103587ce9a5714291a53dbf5490c3c.zip |
Staging: bcm: Remove typedef for link_request and call directly.
This patch removes typedef for link_request, changes the
name of the struct from link_request to bcm_link_request.
In addition, any calls to the following typedefs
"LINK_REQUEST, *PLINK_REQUEST, *CONTROL_MESSAGE"
are changed to call the struct directly.
Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/bcm/Bcmchar.c')
-rw-r--r-- | drivers/staging/bcm/Bcmchar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/bcm/Bcmchar.c b/drivers/staging/bcm/Bcmchar.c index 8d4052a7deae..d1dc0c3852ab 100644 --- a/drivers/staging/bcm/Bcmchar.c +++ b/drivers/staging/bcm/Bcmchar.c @@ -722,7 +722,7 @@ static long bcm_char_ioctl(struct file *filp, UINT cmd, ULONG arg) if (copy_from_user(&IoBuffer, argp, sizeof(IOCTL_BUFFER))) return -EFAULT; - if (IoBuffer.InputLength < sizeof(struct link_request)) + if (IoBuffer.InputLength < sizeof(struct bcm_link_request)) return -EINVAL; if (IoBuffer.InputLength > MAX_CNTL_PKT_SIZE) |