Revision e6158b4a5647624ceb90074bfcc248ea3152c906 authored by Lothar Wassmann on 12 October 2005, 18:58:11 UTC, committed by Russell King on 12 October 2005, 18:58:11 UTC
Patch from Lothar Wassmann

The function serial_pxa_set_termios() is calling uart_update_timeout()
with the baud rate divisor as third parameter, while
uart_update_timeout() expects the baud rate in this place.
This results in a bogus port->timeout which is proportional to the
baud rate.

Signed-off-by: Lothar Wassmann <LW@KARO-electronics.de>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
1 parent 6ec5e7f
Raw File
cache.h
#ifndef __UM_CACHE_H
#define __UM_CACHE_H

/* These are x86 numbers */
#define L1_CACHE_SHIFT 5
#define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT)

#define L1_CACHE_SHIFT_MAX 7	/* largest L1 which this arch supports */

#endif
back to top