-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'renesas-sh-drivers-for-v3.15' of git://git.kernel.org/pub/…
…scm/linux/kernel/git/horms/renesas Pull SH driver fix from Simon Horman: "Compile drivers/sh/pm_runtime.c if ARCH_SHMOBILE_MULTI This resolves a regression introduced in v3.14 by commit bf98c1e ("ARM: Rename ARCH_SHMOBILE to ARCH_SHMOBILE_LEGACY")" * tag 'renesas-sh-drivers-for-v3.15' of git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas: drivers: sh: compile drivers/sh/pm_runtime.c if ARCH_SHMOBILE_MULTI
- Loading branch information
Showing
3 changed files
with
28 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
# | ||
# Makefile for the SuperH specific drivers. | ||
# | ||
obj-y := intc/ | ||
obj-$(CONFIG_SUPERH) += intc/ | ||
obj-$(CONFIG_ARCH_SHMOBILE_LEGACY) += intc/ | ||
ifneq ($(CONFIG_COMMON_CLK),y) | ||
obj-$(CONFIG_HAVE_CLK) += clk/ | ||
endif | ||
obj-$(CONFIG_MAPLE) += maple/ | ||
obj-$(CONFIG_SUPERHYWAY) += superhyway/ | ||
|
||
obj-$(CONFIG_HAVE_CLK) += clk/ | ||
obj-$(CONFIG_MAPLE) += maple/ | ||
obj-$(CONFIG_SUPERHYWAY) += superhyway/ | ||
|
||
obj-y += pm_runtime.o | ||
obj-y += pm_runtime.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters