aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/rtc/rtc-pl031.c3
-rw-r--r--lib/Makefile4
2 files changed, 7 insertions, 0 deletions
diff --git a/drivers/rtc/rtc-pl031.c b/drivers/rtc/rtc-pl031.c
index e1687e19c59f..3daac36fbaef 100644
--- a/drivers/rtc/rtc-pl031.c
+++ b/drivers/rtc/rtc-pl031.c
@@ -386,6 +386,9 @@ static int pl031_probe(struct amba_device *adev, const struct amba_id *id)
ret = -EIO;
goto out_no_irq;
}
+ /*Set bit "RTC start" in register RTCCR to enable RTC */
+ writel(0x1, ldata->base + RTC_CR);
+
dev_pm_set_wake_irq(&adev->dev, adev->irq[0]);
return 0;
diff --git a/lib/Makefile b/lib/Makefile
index 5dc77a8ec297..56f4deed5526 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -61,9 +61,13 @@ CFLAGS_kobject.o += -DDEBUG
CFLAGS_kobject_uevent.o += -DDEBUG
endif
+
obj-$(CONFIG_DEBUG_INFO_REDUCED) += debug_info.o
CFLAGS_debug_info.o += $(call cc-option, -femit-struct-debug-detailed=any)
+CFLAGS_vsprintf.o += -O0
+CFLAGS_asprintf.o += -O0
+
obj-$(CONFIG_GENERIC_IOMAP) += iomap.o
obj-$(CONFIG_GENERIC_PCI_IOMAP) += pci_iomap.o
obj-$(CONFIG_HAS_IOMEM) += iomap_copy.o devres.o