From: Paul Mundt Date: Mon, 18 Oct 2010 12:32:58 +0000 (+0900) Subject: sh: clkfwk: Shuffle around to match the intc split up. X-Git-Tag: v2.6.37-rc1~136^2~1 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=de9186c257acb06ca8187cff1c94412b5f80a3bd;p=karo-tx-linux.git 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 --- diff --git a/drivers/sh/Makefile b/drivers/sh/Makefile index 50dd5a65f72e..24e6cec0ae8d 100644 --- a/drivers/sh/Makefile +++ b/drivers/sh/Makefile @@ -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 diff --git a/drivers/sh/clk/Makefile b/drivers/sh/clk/Makefile new file mode 100644 index 000000000000..5d15ebfaa074 --- /dev/null +++ b/drivers/sh/clk/Makefile @@ -0,0 +1,3 @@ +obj-y := core.o + +obj-$(CONFIG_SH_CLK_CPG) += cpg.o diff --git a/drivers/sh/clk.c b/drivers/sh/clk/core.c similarity index 99% rename from drivers/sh/clk.c rename to drivers/sh/clk/core.c index dae64ee9ecc5..fd0d1b98901c 100644 --- a/drivers/sh/clk.c +++ b/drivers/sh/clk/core.c @@ -1,5 +1,5 @@ /* - * drivers/sh/clk.c - SuperH clock framework + * SuperH clock framework * * Copyright (C) 2005 - 2010 Paul Mundt * diff --git a/drivers/sh/clk-cpg.c b/drivers/sh/clk/cpg.c similarity index 96% rename from drivers/sh/clk-cpg.c rename to drivers/sh/clk/cpg.c index 392627be4544..3aea5f0ceb09 100644 --- a/drivers/sh/clk-cpg.c +++ b/drivers/sh/clk/cpg.c @@ -1,3 +1,12 @@ +/* + * Helper routines for SuperH Clock Pulse Generator blocks (CPG). + * + * Copyright (C) 2010 Magnus Damm + * + * This file is subject to the terms and conditions of the GNU General Public + * License. See the file "COPYING" in the main directory of this archive + * for more details. + */ #include #include #include