diff options
author | Haavard Skinnemoen <hskinnemoen@atmel.com> | 2008-02-08 07:21:07 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-08 12:22:37 -0500 |
commit | 6433471d33c09d69d029b1c4b7bdd1612c492587 (patch) | |
tree | a6baa8c2b489d7d13b0941747eb03ded7bd86de1 /drivers | |
parent | a66706158d6bc4d9eb29c37852001f78f4c8989c (diff) |
atmel_serial: fix broken RX buffer allocation
Introduced by atmel_serial-split-the-interrupt-handler.patch.
Thanks to michael <trimarchi@gandalf.sssup.it> for spotting it.
Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/serial/atmel_serial.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/serial/atmel_serial.c b/drivers/serial/atmel_serial.c index d15ab2243289..e08fe64e4466 100644 --- a/drivers/serial/atmel_serial.c +++ b/drivers/serial/atmel_serial.c | |||
@@ -1469,7 +1469,8 @@ static int __devinit atmel_serial_probe(struct platform_device *pdev) | |||
1469 | 1469 | ||
1470 | if (!atmel_use_dma_rx(&port->uart)) { | 1470 | if (!atmel_use_dma_rx(&port->uart)) { |
1471 | ret = -ENOMEM; | 1471 | ret = -ENOMEM; |
1472 | data = kmalloc(ATMEL_SERIAL_RINGSIZE, GFP_KERNEL); | 1472 | data = kmalloc(sizeof(struct atmel_uart_char) |
1473 | * ATMEL_SERIAL_RINGSIZE, GFP_KERNEL); | ||
1473 | if (!data) | 1474 | if (!data) |
1474 | goto err_alloc_ring; | 1475 | goto err_alloc_ring; |
1475 | port->rx_ring.buf = data; | 1476 | port->rx_ring.buf = data; |