changed Makefile and profiles, added patches for kernel 2.6.24
[openwrt.git] / target / linux / s3c24xx / patches-2.6.24 / 1263-commit-830ea3d0c27c0c750b7bf1b56c002ee7943f3edc.patch
1 From 749594928cc1a0e452c4c791fcbea2f8f4a7e259 Mon Sep 17 00:00:00 2001
2 From: Mike Westerhof <mwester@dls.net>
3 Date: Fri, 8 Aug 2008 13:08:03 +0100
4 Subject: [PATCH] commit 830ea3d0c27c0c750b7bf1b56c002ee7943f3edc
5
6     gta0x-log-serial-rx-error.patch
7
8     This patch causes a KERN_DEBUG message to be printed each time an
9     error status is read from a UART.  This is intended to facilitate
10     the reporting of more useful problem and bug reports from users
11     in the field.
12
13     Signed-off-by: Mike Westerhof <mwester@dls.net>
14 ---
15  drivers/serial/s3c2410.c |    2 +-
16  1 files changed, 1 insertions(+), 1 deletions(-)
17
18 diff --git a/drivers/serial/s3c2410.c b/drivers/serial/s3c2410.c
19 index fef3c8f..5652905 100644
20 --- a/drivers/serial/s3c2410.c
21 +++ b/drivers/serial/s3c2410.c
22 @@ -357,7 +357,7 @@ s3c24xx_serial_rx_chars(int irq, void *dev_id)
23                 port->icount.rx++;
24  
25                 if (unlikely(uerstat & S3C2410_UERSTAT_ANY)) {
26 -                       dbg("rxerr: port ch=0x%02x, rxs=0x%08x\n",
27 +                       printk(KERN_DEBUG "rxerr: port ch=0x%02x, rxs=0x%08x\n",
28                             ch, uerstat);
29  
30                         /* check for break */
31 -- 
32 1.5.6.5
33