diff options
author | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2020-03-09 13:35:14 +0100 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2020-03-16 11:12:11 +0100 |
commit | eac1c3fc55f8744c0b2a4459f52f3761c1e588ab (patch) | |
tree | 88d5635ca645f82cadc1b3f4449b014d136567b8 /drivers/rtc | |
parent | ec98a87509f40324807dc179a7e3163d40709eba (diff) | |
download | linux-eac1c3fc55f8744c0b2a4459f52f3761c1e588ab.tar.gz linux-eac1c3fc55f8744c0b2a4459f52f3761c1e588ab.tar.bz2 linux-eac1c3fc55f8744c0b2a4459f52f3761c1e588ab.zip |
rtc: m48t35: remove SGI-IP27 kludge
With the IOC3 MFD driver it's no longer necessary to special case SGI-IP27.
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Link: https://lore.kernel.org/r/20200309123514.15543-1-tsbogend@alpha.franken.de
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Diffstat (limited to 'drivers/rtc')
-rw-r--r-- | drivers/rtc/rtc-m48t35.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/rtc/rtc-m48t35.c b/drivers/rtc/rtc-m48t35.c index e8194f1f01a8..92f19bf997b2 100644 --- a/drivers/rtc/rtc-m48t35.c +++ b/drivers/rtc/rtc-m48t35.c @@ -160,15 +160,10 @@ static int m48t35_probe(struct platform_device *pdev) return -ENOMEM; priv->size = resource_size(res); - /* - * kludge: remove the #ifndef after ioc3 resource - * conflicts are resolved - */ -#ifndef CONFIG_SGI_IP27 if (!devm_request_mem_region(&pdev->dev, res->start, priv->size, pdev->name)) return -EBUSY; -#endif + priv->baseaddr = res->start; priv->reg = devm_ioremap(&pdev->dev, priv->baseaddr, priv->size); if (!priv->reg) |