diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-02-09 11:39:55 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-09 12:14:08 -0500 |
commit | 53ebb3b8264a77b6214f7a405300de8c24a12554 (patch) | |
tree | 3d63801f367c00c7d3e28c29bd7f60fd1273deba /drivers/usb/serial/cp2101.c | |
parent | f1fda89522c5aaa1bd4ef69605e85e6ee9c85faf (diff) |
[PATCH] trivial usb endianness annotations
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/usb/serial/cp2101.c')
-rw-r--r-- | drivers/usb/serial/cp2101.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/usb/serial/cp2101.c b/drivers/usb/serial/cp2101.c index 06b4fffc189c..3ec24870bca9 100644 --- a/drivers/usb/serial/cp2101.c +++ b/drivers/usb/serial/cp2101.c | |||
@@ -170,13 +170,13 @@ static int cp2101_get_config(struct usb_serial_port* port, u8 request, | |||
170 | unsigned int *data, int size) | 170 | unsigned int *data, int size) |
171 | { | 171 | { |
172 | struct usb_serial *serial = port->serial; | 172 | struct usb_serial *serial = port->serial; |
173 | u32 *buf; | 173 | __le32 *buf; |
174 | int result, i, length; | 174 | int result, i, length; |
175 | 175 | ||
176 | /* Number of integers required to contain the array */ | 176 | /* Number of integers required to contain the array */ |
177 | length = (((size - 1) | 3) + 1)/4; | 177 | length = (((size - 1) | 3) + 1)/4; |
178 | 178 | ||
179 | buf = kcalloc(length, sizeof(u32), GFP_KERNEL); | 179 | buf = kcalloc(length, sizeof(__le32), GFP_KERNEL); |
180 | if (!buf) { | 180 | if (!buf) { |
181 | dev_err(&port->dev, "%s - out of memory.\n", __FUNCTION__); | 181 | dev_err(&port->dev, "%s - out of memory.\n", __FUNCTION__); |
182 | return -ENOMEM; | 182 | return -ENOMEM; |
@@ -216,13 +216,13 @@ static int cp2101_set_config(struct usb_serial_port* port, u8 request, | |||
216 | unsigned int *data, int size) | 216 | unsigned int *data, int size) |
217 | { | 217 | { |
218 | struct usb_serial *serial = port->serial; | 218 | struct usb_serial *serial = port->serial; |
219 | u32 *buf; | 219 | __le32 *buf; |
220 | int result, i, length; | 220 | int result, i, length; |
221 | 221 | ||
222 | /* Number of integers required to contain the array */ | 222 | /* Number of integers required to contain the array */ |
223 | length = (((size - 1) | 3) + 1)/4; | 223 | length = (((size - 1) | 3) + 1)/4; |
224 | 224 | ||
225 | buf = kmalloc(length * sizeof(u32), GFP_KERNEL); | 225 | buf = kmalloc(length * sizeof(__le32), GFP_KERNEL); |
226 | if (!buf) { | 226 | if (!buf) { |
227 | dev_err(&port->dev, "%s - out of memory.\n", | 227 | dev_err(&port->dev, "%s - out of memory.\n", |
228 | __FUNCTION__); | 228 | __FUNCTION__); |