diff options
author | Alan Cox <alan@redhat.com> | 2008-12-06 01:32:22 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-12-06 01:32:22 -0500 |
commit | d2b88814c6a63e4018cd299826907a12068ffdb7 (patch) | |
tree | 4ef3a7e40dc725e3e0367db1d6cb91fefbeb99d6 /drivers/net/wireless/strip.c | |
parent | 8a1ec21e6c856b996cffcd4b33f037f6748a3ab4 (diff) |
tty: driverdata and discdata are void *
Remove all the extra casting while we are cleaning up
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wireless/strip.c')
-rw-r--r-- | drivers/net/wireless/strip.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/net/wireless/strip.c b/drivers/net/wireless/strip.c index f93caf4be328..692e6c5e009a 100644 --- a/drivers/net/wireless/strip.c +++ b/drivers/net/wireless/strip.c | |||
@@ -1234,7 +1234,7 @@ static void ResetRadio(struct strip *strip_info) | |||
1234 | 1234 | ||
1235 | static void strip_write_some_more(struct tty_struct *tty) | 1235 | static void strip_write_some_more(struct tty_struct *tty) |
1236 | { | 1236 | { |
1237 | struct strip *strip_info = (struct strip *) tty->disc_data; | 1237 | struct strip *strip_info = tty->disc_data; |
1238 | 1238 | ||
1239 | /* First make sure we're connected. */ | 1239 | /* First make sure we're connected. */ |
1240 | if (!strip_info || strip_info->magic != STRIP_MAGIC || | 1240 | if (!strip_info || strip_info->magic != STRIP_MAGIC || |
@@ -2259,7 +2259,7 @@ static void process_message(struct strip *strip_info) | |||
2259 | static void strip_receive_buf(struct tty_struct *tty, const unsigned char *cp, | 2259 | static void strip_receive_buf(struct tty_struct *tty, const unsigned char *cp, |
2260 | char *fp, int count) | 2260 | char *fp, int count) |
2261 | { | 2261 | { |
2262 | struct strip *strip_info = (struct strip *) tty->disc_data; | 2262 | struct strip *strip_info = tty->disc_data; |
2263 | const unsigned char *end = cp + count; | 2263 | const unsigned char *end = cp + count; |
2264 | 2264 | ||
2265 | if (!strip_info || strip_info->magic != STRIP_MAGIC | 2265 | if (!strip_info || strip_info->magic != STRIP_MAGIC |
@@ -2594,7 +2594,7 @@ static struct strip *strip_alloc(void) | |||
2594 | 2594 | ||
2595 | static int strip_open(struct tty_struct *tty) | 2595 | static int strip_open(struct tty_struct *tty) |
2596 | { | 2596 | { |
2597 | struct strip *strip_info = (struct strip *) tty->disc_data; | 2597 | struct strip *strip_info = tty->disc_data; |
2598 | 2598 | ||
2599 | /* | 2599 | /* |
2600 | * First make sure we're not already connected. | 2600 | * First make sure we're not already connected. |
@@ -2665,7 +2665,7 @@ static int strip_open(struct tty_struct *tty) | |||
2665 | 2665 | ||
2666 | static void strip_close(struct tty_struct *tty) | 2666 | static void strip_close(struct tty_struct *tty) |
2667 | { | 2667 | { |
2668 | struct strip *strip_info = (struct strip *) tty->disc_data; | 2668 | struct strip *strip_info = tty->disc_data; |
2669 | 2669 | ||
2670 | /* | 2670 | /* |
2671 | * First make sure we're connected. | 2671 | * First make sure we're connected. |
@@ -2691,7 +2691,7 @@ static void strip_close(struct tty_struct *tty) | |||
2691 | static int strip_ioctl(struct tty_struct *tty, struct file *file, | 2691 | static int strip_ioctl(struct tty_struct *tty, struct file *file, |
2692 | unsigned int cmd, unsigned long arg) | 2692 | unsigned int cmd, unsigned long arg) |
2693 | { | 2693 | { |
2694 | struct strip *strip_info = (struct strip *) tty->disc_data; | 2694 | struct strip *strip_info = tty->disc_data; |
2695 | 2695 | ||
2696 | /* | 2696 | /* |
2697 | * First make sure we're connected. | 2697 | * First make sure we're connected. |