diff options
author | Ben Dooks <ben-linux@fluff.org> | 2008-12-14 18:11:02 -0500 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2008-12-18 11:35:56 -0500 |
commit | 7de40c216c15c02c453f17b6c9ecee83f93790f1 (patch) | |
tree | 6e1b3ff53fbed5e5796659f2df880ac9140a0a96 /drivers/serial/samsung.c | |
parent | 5bdf67312e1ddc03cb29dad9bfe5b24988ee1c97 (diff) |
[ARM] S3C: Remove cpufreq warnings for unset serial information
As noted by Russell King, do not print any warnings if the
uinfo or tty fields are not set when a CPU frequency change
is sent.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'drivers/serial/samsung.c')
-rw-r--r-- | drivers/serial/samsung.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/drivers/serial/samsung.c b/drivers/serial/samsung.c index dc7e7ebad236..41ac94872b8d 100644 --- a/drivers/serial/samsung.c +++ b/drivers/serial/samsung.c | |||
@@ -937,17 +937,13 @@ static int s3c24xx_serial_cpufreq_transition(struct notifier_block *nb, | |||
937 | struct ktermios *termios; | 937 | struct ktermios *termios; |
938 | struct tty_struct *tty; | 938 | struct tty_struct *tty; |
939 | 939 | ||
940 | if (uport->info == NULL) { | 940 | if (uport->info == NULL) |
941 | printk(KERN_WARNING "%s: info NULL\n", __func__); | ||
942 | goto exit; | 941 | goto exit; |
943 | } | ||
944 | 942 | ||
945 | tty = uport->info->port.tty; | 943 | tty = uport->info->port.tty; |
946 | 944 | ||
947 | if (tty == NULL) { | 945 | if (tty == NULL) |
948 | printk(KERN_WARNING "%s: tty is NULL\n", __func__); | ||
949 | goto exit; | 946 | goto exit; |
950 | } | ||
951 | 947 | ||
952 | termios = tty->termios; | 948 | termios = tty->termios; |
953 | 949 | ||