]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
Merge branch 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-linus
authorLinus Torvalds <torvalds@g5.osdl.org>
Tue, 10 Jan 2006 17:00:55 +0000 (09:00 -0800)
committerLinus Torvalds <torvalds@g5.osdl.org>
Tue, 10 Jan 2006 17:00:55 +0000 (09:00 -0800)
1  2 
drivers/char/vr41xx_rtc.c
drivers/serial/vr41xx_siu.c

index 159acd8b77880bf76a6a9be94ce81a937e22e815,5354537587e5e034b87c251cd8be0969014ee1cf..bc1b4a15212c2d939e4ed4508dcf5c70eacfe405
@@@ -1,7 -1,7 +1,7 @@@
  /*
   *  Driver for NEC VR4100 series  Real Time Clock unit.
   *
-  *  Copyright (C) 2003-2005  Yoichi Yuasa <yuasa@hh.iij4u.or.jp>
+  *  Copyright (C) 2003-2005  Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>
   *
   *  This program is free software; you can redistribute it and/or modify
   *  it under the terms of the GNU General Public License as published by
@@@ -37,7 -37,7 +37,7 @@@
  #include <asm/uaccess.h>
  #include <asm/vr41xx/vr41xx.h>
  
- MODULE_AUTHOR("Yoichi Yuasa <yuasa@hh.iij4u.or.jp>");
+ MODULE_AUTHOR("Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>");
  MODULE_DESCRIPTION("NEC VR4100 series RTC driver");
  MODULE_LICENSE("GPL");
  
@@@ -127,6 -127,8 +127,6 @@@ struct resource rtc_resource[2] = 
                .flags  = IORESOURCE_MEM,       },
  };
  
 -#define RTC_NUM_RESOURCES     sizeof(rtc_resource) / sizeof(struct resource)
 -
  static inline unsigned long read_elapsed_second(void)
  {
        unsigned long first_low, first_mid, first_high;
@@@ -684,8 -686,7 +684,8 @@@ static int __devinit vr41xx_rtc_init(vo
                break;
        }
  
 -      rtc_platform_device = platform_device_register_simple("RTC", -1, rtc_resource, RTC_NUM_RESOURCES);
 +      rtc_platform_device = platform_device_register_simple("RTC", -1,
 +                            rtc_resource, ARRAY_SIZE(rtc_resource));
        if (IS_ERR(rtc_platform_device))
                return PTR_ERR(rtc_platform_device);
  
index 0a28deeb098d6f0cf254a703196b2202dfcb824a,4a3005fdd0192af00c730b10f8f226f5a13a921a..d61494d185cd3a04aef5c034a9cd6938d22e0dc1
@@@ -1,7 -1,7 +1,7 @@@
  /*
   *  Driver for NEC VR4100 series Serial Interface Unit.
   *
-  *  Copyright (C) 2004-2005  Yoichi Yuasa <yuasa@hh.iij4u.or.jp>
+  *  Copyright (C) 2004-2005  Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>
   *
   *  Based on drivers/serial/8250.c, by Russell King.
   *
@@@ -371,6 -371,11 +371,6 @@@ static inline void receive_chars(struc
        lsr = *status;
  
        do {
 -              if (unlikely(tty->flip.count >= TTY_FLIPBUF_SIZE)) {
 -                      if (tty->low_latency)
 -                              tty_flip_buffer_push(tty);
 -              }
 -
                ch = siu_read(port, UART_RX);
                port->icount.rx++;
                flag = TTY_NORMAL;