Skip to content

Commit

Permalink
mmc: s3cmci: Register cpufreq notifier only on S3C24xx
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Krzysztof Kozlowski <[email protected]>
Signed-off-by: Ulf Hansson <[email protected]>
  • Loading branch information
krzk authored and storulf committed Jul 25, 2016
1 parent 07c161b commit 39f80bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drivers/mmc/host/s3cmci.c
Original file line number Diff line number Diff line change
Expand Up @@ -1365,7 +1365,7 @@ static struct s3c24xx_mci_pdata s3cmci_def_pdata = {
.no_detect = 1,
};

#ifdef CONFIG_CPU_FREQ
#ifdef CONFIG_ARM_S3C24XX_CPUFREQ

static int s3cmci_cpufreq_transition(struct notifier_block *nb,
unsigned long val, void *data)
Expand Down
2 changes: 1 addition & 1 deletion drivers/mmc/host/s3cmci.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ struct s3cmci_host {
struct dentry *debug_regs;
#endif

#ifdef CONFIG_CPU_FREQ
#ifdef CONFIG_ARM_S3C24XX_CPUFREQ
struct notifier_block freq_transition;
#endif
};

0 comments on commit 39f80bc

Please sign in to comment.