-
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.
sh: clkfwk: Shuffle around to match the intc split up.
This shuffles the clock framework code around to a drivers/sh/clk subdir, to follow the intc split up. This will make it easier to subsequently break things out as well as plug in different helpers for non-CPG users. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
- Loading branch information
Paul Mundt
committed
Oct 18, 2010
1 parent
c2590f4
commit de9186c
Showing
4 changed files
with
16 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
# | ||
# Makefile for the SuperH specific drivers. | ||
# | ||
obj-y := clk.o intc/ | ||
obj-y := intc/ | ||
|
||
obj-$(CONFIG_SUPERHYWAY) += superhyway/ | ||
obj-$(CONFIG_HAVE_CLK) += clk/ | ||
obj-$(CONFIG_MAPLE) += maple/ | ||
|
||
obj-$(CONFIG_SUPERHYWAY) += superhyway/ | ||
obj-$(CONFIG_GENERIC_GPIO) += pfc.o | ||
obj-$(CONFIG_SH_CLK_CPG) += clk-cpg.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
obj-y := core.o | ||
|
||
obj-$(CONFIG_SH_CLK_CPG) += cpg.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
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