diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-06-12 14:10:50 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-06-12 14:10:50 -0400 |
commit | 1b8487368bb0acedf23e226974b63aaaf2bfddbd (patch) | |
tree | 5f5654b78d6af51d2d38baa498ad6652cf6fb74e | |
parent | 08224262adefb5e6460888b2490a96e1bc28aef5 (diff) |
Revert "staging: usbip: bugfix for stack corruption on 64-bit architectures"
This reverts commit 08224262adefb5e6460888b2490a96e1bc28aef5 as it's
just not right.
Reported-by: Ben Hutchings <ben@decadent.org.uk>
Cc: stable <stable@vger.kernel.org>
Cc: Bart Westgeest <bart@elbrys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/usbip/vhci_hcd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/usbip/vhci_hcd.c b/drivers/staging/usbip/vhci_hcd.c index 117a7ad9fdb1..f708cbaee16b 100644 --- a/drivers/staging/usbip/vhci_hcd.c +++ b/drivers/staging/usbip/vhci_hcd.c | |||
@@ -205,7 +205,7 @@ static int vhci_hub_status(struct usb_hcd *hcd, char *buf) | |||
205 | int retval = 0; | 205 | int retval = 0; |
206 | 206 | ||
207 | /* the enough buffer is allocated according to USB_MAXCHILDREN */ | 207 | /* the enough buffer is allocated according to USB_MAXCHILDREN */ |
208 | u32 *event_bits = (unsigned long *) buf; | 208 | unsigned long *event_bits = (unsigned long *) buf; |
209 | int rhport; | 209 | int rhport; |
210 | int changed = 0; | 210 | int changed = 0; |
211 | 211 | ||