mtd: nand: s3c2410: Register cpufreq notifier only on S3C24xx

Linux-MTD Mailing List linux-mtd at lists.infradead.org
Sat Oct 8 21:59:02 PDT 2016


Gitweb:     http://git.infradead.org/?p=mtd-2.6.git;a=commit;h=d9ca77f0eafabb5495542386777ab2833442089b
Commit:     d9ca77f0eafabb5495542386777ab2833442089b
Parent:     fc6b4d12bc394aa9b5c22aa3a2f5128ad6c84a72
Author:     Krzysztof Kozlowski <k.kozlowski at samsung.com>
AuthorDate: Mon Jun 27 14:51:38 2016 +0200
Committer:  Boris Brezillon <boris.brezillon at free-electrons.com>
CommitDate: Fri Sep 23 09:35:16 2016 +0200

    mtd: nand: s3c2410: Register cpufreq notifier only on S3C24xx
    
    The driver registered for CPU frequency transitions to recalculate its
    clock when ARM clock frequency changes (ratio between frequencies of
    ARM's parent clock (fclk) and clock for peripherals remains fixed).
    
    This is needed only on S3C24xx platform when cpufreq driver is enabled
    so limit the ifdef to respective cpufreq Kconfig.
    
    Suggested-by: Marek Szyprowski <m.szyprowski at samsung.com>
    Signed-off-by: Krzysztof Kozlowski <k.kozlowski at samsung.com>
    Signed-off-by: Boris Brezillon <boris.brezillon at free-electrons.com>
---
 drivers/mtd/nand/s3c2410.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/mtd/nand/s3c2410.c b/drivers/mtd/nand/s3c2410.c
index b1734d7..d459c19d 100644
--- a/drivers/mtd/nand/s3c2410.c
+++ b/drivers/mtd/nand/s3c2410.c
@@ -180,7 +180,7 @@ struct s3c2410_nand_info {
 
 	enum s3c_cpu_type		cpu_type;
 
-#ifdef CONFIG_CPU_FREQ
+#ifdef CONFIG_ARM_S3C24XX_CPUFREQ
 	struct notifier_block	freq_transition;
 #endif
 };
@@ -701,7 +701,7 @@ static void s3c2440_nand_write_buf(struct mtd_info *mtd, const u_char *buf,
 
 /* cpufreq driver support */
 
-#ifdef CONFIG_CPU_FREQ
+#ifdef CONFIG_ARM_S3C24XX_CPUFREQ
 
 static int s3c2410_nand_cpufreq_transition(struct notifier_block *nb,
 					  unsigned long val, void *data)



More information about the linux-mtd-cvs mailing list