* [PATCH] at91: add missing clkdev changes for at91sam9g45
@ 2011-08-21 21:08 Hubert Feurstein
2011-09-07 14:40 ` Hubert Feurstein
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Hubert Feurstein @ 2011-08-21 21:08 UTC (permalink / raw)
To: barebox
This fixes the following compile errors
arch/arm/mach-at91/at91sam9g45.c:185:3: error: 'ohci_clk' undeclared here (not in a function)
arch/arm/mach-at91/at91sam9g45.c:186:3: error: 'tcb1_clk' undeclared here (not in a function)
arch/arm/mach-at91/at91sam9g45_devices.c: In function 'at91_add_device_mci':
arch/arm/mach-at91/at91sam9g45_devices.c:258:2: warning: implicit declaration of function 'at91_clock_associate'
[...]
arch/arm/mach-at91/built-in.o: In function `at91_add_device_mci':
sam9_smc.c:(.text.at91_add_device_mci+0x1d0): undefined reference to `at91_clock_associate'
which were introduced in commit:
"at91: swtich to clkdev" (ae19fe26cc230bc38238c2d66b8f464761286316)
Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com>
Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
---
arch/arm/mach-at91/at91sam9g45.c | 3 ---
arch/arm/mach-at91/at91sam9g45_devices.c | 7 +------
2 files changed, 1 insertions(+), 9 deletions(-)
diff --git a/arch/arm/mach-at91/at91sam9g45.c b/arch/arm/mach-at91/at91sam9g45.c
index d4c27f8..f1139da 100644
--- a/arch/arm/mach-at91/at91sam9g45.c
+++ b/arch/arm/mach-at91/at91sam9g45.c
@@ -181,9 +181,6 @@ static struct clk *periph_clocks[] __initdata = {
&isi_clk,
&udphs_clk,
&mmc1_clk,
- // irq0
- &ohci_clk,
- &tcb1_clk,
};
static struct clk_lookup periph_clocks_lookups[] = {
diff --git a/arch/arm/mach-at91/at91sam9g45_devices.c b/arch/arm/mach-at91/at91sam9g45_devices.c
index f6e1eb4..022f3e1 100644
--- a/arch/arm/mach-at91/at91sam9g45_devices.c
+++ b/arch/arm/mach-at91/at91sam9g45_devices.c
@@ -188,8 +188,6 @@ void at91_register_uart(unsigned id, unsigned pins)
void at91_add_device_mci(short mmc_id, struct atmel_mci_platform_data *data)
{
resource_size_t start;
- struct device_d *dev;
- char* clk_name;
if (!data)
return;
@@ -209,7 +207,6 @@ void at91_add_device_mci(short mmc_id, struct atmel_mci_platform_data *data)
if (mmc_id == 0) { /* MCI0 */
start = AT91SAM9G45_BASE_MCI0;
- clk_name = "mci0_clk";
/* CLK */
at91_set_A_periph(AT91_PIN_PA0, 0);
@@ -231,7 +228,6 @@ void at91_add_device_mci(short mmc_id, struct atmel_mci_platform_data *data)
}
} else { /* MCI1 */
start = AT91SAM9G45_BASE_MCI1;
- clk_name = "mci1_clk";
/* CLK */
at91_set_A_periph(AT91_PIN_PA31, 0);
@@ -253,9 +249,8 @@ void at91_add_device_mci(short mmc_id, struct atmel_mci_platform_data *data)
}
}
- dev = add_generic_device("atmel_mci", mmc_id, NULL, start, 4096,
+ add_generic_device("atmel_mci", mmc_id, NULL, start, 4096,
IORESOURCE_MEM, data);
- at91_clock_associate(clk_name, dev, "mci_clk");
}
#else
void at91_add_device_mci(short mmc_id, struct atmel_mci_platform_data *data) {}
--
1.7.4.1
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] at91: add missing clkdev changes for at91sam9g45
2011-08-21 21:08 [PATCH] at91: add missing clkdev changes for at91sam9g45 Hubert Feurstein
@ 2011-09-07 14:40 ` Hubert Feurstein
2011-09-14 20:35 ` Hubert Feurstein
2011-09-15 13:13 ` Jean-Christophe PLAGNIOL-VILLARD
2 siblings, 0 replies; 4+ messages in thread
From: Hubert Feurstein @ 2011-09-07 14:40 UTC (permalink / raw)
To: barebox, Jean-Christophe PLAGNIOL-VILLARD
Jean-Christophe, do you have comments, maybe an ACK?
Regards
Hubert
2011/8/21 Hubert Feurstein <h.feurstein@gmail.com>:
> This fixes the following compile errors
> arch/arm/mach-at91/at91sam9g45.c:185:3: error: 'ohci_clk' undeclared here (not in a function)
> arch/arm/mach-at91/at91sam9g45.c:186:3: error: 'tcb1_clk' undeclared here (not in a function)
> arch/arm/mach-at91/at91sam9g45_devices.c: In function 'at91_add_device_mci':
> arch/arm/mach-at91/at91sam9g45_devices.c:258:2: warning: implicit declaration of function 'at91_clock_associate'
> [...]
> arch/arm/mach-at91/built-in.o: In function `at91_add_device_mci':
> sam9_smc.c:(.text.at91_add_device_mci+0x1d0): undefined reference to `at91_clock_associate'
> which were introduced in commit:
> "at91: swtich to clkdev" (ae19fe26cc230bc38238c2d66b8f464761286316)
>
> Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com>
> Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> ---
> arch/arm/mach-at91/at91sam9g45.c | 3 ---
> arch/arm/mach-at91/at91sam9g45_devices.c | 7 +------
> 2 files changed, 1 insertions(+), 9 deletions(-)
>
> diff --git a/arch/arm/mach-at91/at91sam9g45.c b/arch/arm/mach-at91/at91sam9g45.c
> index d4c27f8..f1139da 100644
> --- a/arch/arm/mach-at91/at91sam9g45.c
> +++ b/arch/arm/mach-at91/at91sam9g45.c
> @@ -181,9 +181,6 @@ static struct clk *periph_clocks[] __initdata = {
> &isi_clk,
> &udphs_clk,
> &mmc1_clk,
> - // irq0
> - &ohci_clk,
> - &tcb1_clk,
> };
>
> static struct clk_lookup periph_clocks_lookups[] = {
> diff --git a/arch/arm/mach-at91/at91sam9g45_devices.c b/arch/arm/mach-at91/at91sam9g45_devices.c
> index f6e1eb4..022f3e1 100644
> --- a/arch/arm/mach-at91/at91sam9g45_devices.c
> +++ b/arch/arm/mach-at91/at91sam9g45_devices.c
> @@ -188,8 +188,6 @@ void at91_register_uart(unsigned id, unsigned pins)
> void at91_add_device_mci(short mmc_id, struct atmel_mci_platform_data *data)
> {
> resource_size_t start;
> - struct device_d *dev;
> - char* clk_name;
>
> if (!data)
> return;
> @@ -209,7 +207,6 @@ void at91_add_device_mci(short mmc_id, struct atmel_mci_platform_data *data)
>
> if (mmc_id == 0) { /* MCI0 */
> start = AT91SAM9G45_BASE_MCI0;
> - clk_name = "mci0_clk";
> /* CLK */
> at91_set_A_periph(AT91_PIN_PA0, 0);
>
> @@ -231,7 +228,6 @@ void at91_add_device_mci(short mmc_id, struct atmel_mci_platform_data *data)
> }
> } else { /* MCI1 */
> start = AT91SAM9G45_BASE_MCI1;
> - clk_name = "mci1_clk";
> /* CLK */
> at91_set_A_periph(AT91_PIN_PA31, 0);
>
> @@ -253,9 +249,8 @@ void at91_add_device_mci(short mmc_id, struct atmel_mci_platform_data *data)
> }
> }
>
> - dev = add_generic_device("atmel_mci", mmc_id, NULL, start, 4096,
> + add_generic_device("atmel_mci", mmc_id, NULL, start, 4096,
> IORESOURCE_MEM, data);
> - at91_clock_associate(clk_name, dev, "mci_clk");
> }
> #else
> void at91_add_device_mci(short mmc_id, struct atmel_mci_platform_data *data) {}
> --
> 1.7.4.1
>
>
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] at91: add missing clkdev changes for at91sam9g45
2011-08-21 21:08 [PATCH] at91: add missing clkdev changes for at91sam9g45 Hubert Feurstein
2011-09-07 14:40 ` Hubert Feurstein
@ 2011-09-14 20:35 ` Hubert Feurstein
2011-09-15 13:13 ` Jean-Christophe PLAGNIOL-VILLARD
2 siblings, 0 replies; 4+ messages in thread
From: Hubert Feurstein @ 2011-09-14 20:35 UTC (permalink / raw)
To: barebox, Sascha Hauer
Hi Sascha,
please apply this patch to 'master', if you don't mind. Otherwise the
at91sam9g45-based boards
can _not_ be built anymore.
Thanks.
Regards
Hubert
2011/8/21 Hubert Feurstein <h.feurstein@gmail.com>:
> This fixes the following compile errors
> arch/arm/mach-at91/at91sam9g45.c:185:3: error: 'ohci_clk' undeclared here (not in a function)
> arch/arm/mach-at91/at91sam9g45.c:186:3: error: 'tcb1_clk' undeclared here (not in a function)
> arch/arm/mach-at91/at91sam9g45_devices.c: In function 'at91_add_device_mci':
> arch/arm/mach-at91/at91sam9g45_devices.c:258:2: warning: implicit declaration of function 'at91_clock_associate'
> [...]
> arch/arm/mach-at91/built-in.o: In function `at91_add_device_mci':
> sam9_smc.c:(.text.at91_add_device_mci+0x1d0): undefined reference to `at91_clock_associate'
> which were introduced in commit:
> "at91: swtich to clkdev" (ae19fe26cc230bc38238c2d66b8f464761286316)
>
> Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com>
> Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> ---
> arch/arm/mach-at91/at91sam9g45.c | 3 ---
> arch/arm/mach-at91/at91sam9g45_devices.c | 7 +------
> 2 files changed, 1 insertions(+), 9 deletions(-)
>
> diff --git a/arch/arm/mach-at91/at91sam9g45.c b/arch/arm/mach-at91/at91sam9g45.c
> index d4c27f8..f1139da 100644
> --- a/arch/arm/mach-at91/at91sam9g45.c
> +++ b/arch/arm/mach-at91/at91sam9g45.c
> @@ -181,9 +181,6 @@ static struct clk *periph_clocks[] __initdata = {
> &isi_clk,
> &udphs_clk,
> &mmc1_clk,
> - // irq0
> - &ohci_clk,
> - &tcb1_clk,
> };
>
> static struct clk_lookup periph_clocks_lookups[] = {
> diff --git a/arch/arm/mach-at91/at91sam9g45_devices.c b/arch/arm/mach-at91/at91sam9g45_devices.c
> index f6e1eb4..022f3e1 100644
> --- a/arch/arm/mach-at91/at91sam9g45_devices.c
> +++ b/arch/arm/mach-at91/at91sam9g45_devices.c
> @@ -188,8 +188,6 @@ void at91_register_uart(unsigned id, unsigned pins)
> void at91_add_device_mci(short mmc_id, struct atmel_mci_platform_data *data)
> {
> resource_size_t start;
> - struct device_d *dev;
> - char* clk_name;
>
> if (!data)
> return;
> @@ -209,7 +207,6 @@ void at91_add_device_mci(short mmc_id, struct atmel_mci_platform_data *data)
>
> if (mmc_id == 0) { /* MCI0 */
> start = AT91SAM9G45_BASE_MCI0;
> - clk_name = "mci0_clk";
> /* CLK */
> at91_set_A_periph(AT91_PIN_PA0, 0);
>
> @@ -231,7 +228,6 @@ void at91_add_device_mci(short mmc_id, struct atmel_mci_platform_data *data)
> }
> } else { /* MCI1 */
> start = AT91SAM9G45_BASE_MCI1;
> - clk_name = "mci1_clk";
> /* CLK */
> at91_set_A_periph(AT91_PIN_PA31, 0);
>
> @@ -253,9 +249,8 @@ void at91_add_device_mci(short mmc_id, struct atmel_mci_platform_data *data)
> }
> }
>
> - dev = add_generic_device("atmel_mci", mmc_id, NULL, start, 4096,
> + add_generic_device("atmel_mci", mmc_id, NULL, start, 4096,
> IORESOURCE_MEM, data);
> - at91_clock_associate(clk_name, dev, "mci_clk");
> }
> #else
> void at91_add_device_mci(short mmc_id, struct atmel_mci_platform_data *data) {}
> --
> 1.7.4.1
>
>
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] at91: add missing clkdev changes for at91sam9g45
2011-08-21 21:08 [PATCH] at91: add missing clkdev changes for at91sam9g45 Hubert Feurstein
2011-09-07 14:40 ` Hubert Feurstein
2011-09-14 20:35 ` Hubert Feurstein
@ 2011-09-15 13:13 ` Jean-Christophe PLAGNIOL-VILLARD
2 siblings, 0 replies; 4+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2011-09-15 13:13 UTC (permalink / raw)
To: Hubert Feurstein; +Cc: barebox
On 23:08 Sun 21 Aug , Hubert Feurstein wrote:
> This fixes the following compile errors
> arch/arm/mach-at91/at91sam9g45.c:185:3: error: 'ohci_clk' undeclared here (not in a function)
> arch/arm/mach-at91/at91sam9g45.c:186:3: error: 'tcb1_clk' undeclared here (not in a function)
> arch/arm/mach-at91/at91sam9g45_devices.c: In function 'at91_add_device_mci':
> arch/arm/mach-at91/at91sam9g45_devices.c:258:2: warning: implicit declaration of function 'at91_clock_associate'
> [...]
> arch/arm/mach-at91/built-in.o: In function `at91_add_device_mci':
> sam9_smc.c:(.text.at91_add_device_mci+0x1d0): undefined reference to `at91_clock_associate'
> which were introduced in commit:
> "at91: swtich to clkdev" (ae19fe26cc230bc38238c2d66b8f464761286316)
>
> Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com>
> Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
I've a similar patch too
please merge the fix of ALL remove of the at91_clock_assocaite in one commit
Best Regards,
J.
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-09-15 13:35 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-08-21 21:08 [PATCH] at91: add missing clkdev changes for at91sam9g45 Hubert Feurstein
2011-09-07 14:40 ` Hubert Feurstein
2011-09-14 20:35 ` Hubert Feurstein
2011-09-15 13:13 ` Jean-Christophe PLAGNIOL-VILLARD
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox