The patch titled
     rtc: rtc-ds1553.c should use resource_size_t for base address
has been added to the -mm tree.  Its filename is
     rtc-rtc-ds1553c-should-use-resource_size_t-for-base.patch

*** Remember to use Documentation/SubmitChecklist when testing your code ***

See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this

------------------------------------------------------
Subject: rtc: rtc-ds1553.c should use resource_size_t for base address
From: Atsushi Nemoto <[EMAIL PROTECTED]>

Currently the rtc driver, rtc-ds1552.c uses an unsigned long to store the
base mmio address of the NVRAM/RTC.  This breaks on 32-bit systems with
larger physical addresses.

Signed-off-by: Atsushi Nemoto <[EMAIL PROTECTED]>
Cc: David Brownell <[EMAIL PROTECTED]>
Cc: Alessandro Zummo <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 drivers/rtc/rtc-ds1553.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff -puN 
drivers/rtc/rtc-ds1553.c~rtc-rtc-ds1553c-should-use-resource_size_t-for-base 
drivers/rtc/rtc-ds1553.c
--- 
a/drivers/rtc/rtc-ds1553.c~rtc-rtc-ds1553c-should-use-resource_size_t-for-base
+++ a/drivers/rtc/rtc-ds1553.c
@@ -61,7 +61,7 @@
 struct rtc_plat_data {
        struct rtc_device *rtc;
        void __iomem *ioaddr;
-       unsigned long baseaddr;
+       resource_size_t baseaddr;
        unsigned long last_jiffies;
        int irq;
        unsigned int irqen;
_

Patches currently in -mm which might be from [EMAIL PROTECTED] are

rtc-ds1742c-should-use-resource_size_t-for-base-address.patch
rtc-rtc-ds1553c-should-use-resource_size_t-for-base.patch
git-mips.patch
serial_txx9-cleanup-includes.patch
rtc-make-rtc-ds1553-driver-hotplug-aware-take-3.patch
rtc-make-rtc-ds1742-driver-hotplug-aware-take-2.patch

-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to