forked from torvalds/linux
-
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 branch 'clk-shmobile-for-v4.5' of git://git.kernel.org/pub/scm/…
…linux/kernel/git/geert/renesas-drivers into clk-next
- Loading branch information
Showing
8 changed files
with
1,220 additions
and
63 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
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,13 +1,13 @@ | ||
obj-$(CONFIG_ARCH_EMEV2) += clk-emev2.o | ||
obj-$(CONFIG_ARCH_R7S72100) += clk-rz.o | ||
obj-$(CONFIG_ARCH_R8A73A4) += clk-r8a73a4.o | ||
obj-$(CONFIG_ARCH_R8A7740) += clk-r8a7740.o | ||
obj-$(CONFIG_ARCH_R8A7778) += clk-r8a7778.o | ||
obj-$(CONFIG_ARCH_R8A7779) += clk-r8a7779.o | ||
obj-$(CONFIG_ARCH_R8A7790) += clk-rcar-gen2.o | ||
obj-$(CONFIG_ARCH_R8A7791) += clk-rcar-gen2.o | ||
obj-$(CONFIG_ARCH_R8A7793) += clk-rcar-gen2.o | ||
obj-$(CONFIG_ARCH_R8A7794) += clk-rcar-gen2.o | ||
obj-$(CONFIG_ARCH_SH73A0) += clk-sh73a0.o | ||
obj-$(CONFIG_ARCH_SHMOBILE_MULTI) += clk-div6.o | ||
obj-$(CONFIG_ARCH_SHMOBILE_MULTI) += clk-mstp.o | ||
obj-$(CONFIG_ARCH_R7S72100) += clk-rz.o clk-mstp.o | ||
obj-$(CONFIG_ARCH_R8A73A4) += clk-r8a73a4.o clk-mstp.o clk-div6.o | ||
obj-$(CONFIG_ARCH_R8A7740) += clk-r8a7740.o clk-mstp.o clk-div6.o | ||
obj-$(CONFIG_ARCH_R8A7778) += clk-r8a7778.o clk-mstp.o | ||
obj-$(CONFIG_ARCH_R8A7779) += clk-r8a7779.o clk-mstp.o | ||
obj-$(CONFIG_ARCH_R8A7790) += clk-rcar-gen2.o clk-mstp.o clk-div6.o | ||
obj-$(CONFIG_ARCH_R8A7791) += clk-rcar-gen2.o clk-mstp.o clk-div6.o | ||
obj-$(CONFIG_ARCH_R8A7793) += clk-rcar-gen2.o clk-mstp.o clk-div6.o | ||
obj-$(CONFIG_ARCH_R8A7794) += clk-rcar-gen2.o clk-mstp.o clk-div6.o | ||
obj-$(CONFIG_ARCH_R8A7795) += renesas-cpg-mssr.o \ | ||
r8a7795-cpg-mssr.o clk-div6.o | ||
obj-$(CONFIG_ARCH_SH73A0) += clk-sh73a0.o clk-mstp.o clk-div6.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#ifndef __SHMOBILE_CLK_DIV6_H__ | ||
#define __SHMOBILE_CLK_DIV6_H__ | ||
|
||
struct clk *cpg_div6_register(const char *name, unsigned int num_parents, | ||
const char **parent_names, void __iomem *reg); | ||
|
||
#endif |
Oops, something went wrong.