* [PATCH] powerpc/qe: Move cmxgcr_lock definition from the ucc.c into the qe.c
@ 2008-11-11 15:31 Anton Vorontsov
2008-11-11 17:11 ` Timur Tabi
2008-12-03 15:50 ` Kumar Gala
0 siblings, 2 replies; 3+ messages in thread
From: Anton Vorontsov @ 2008-11-11 15:31 UTC (permalink / raw)
To: Kumar Gala; +Cc: linuxppc-dev, Timur Tabi
With this patch we can compile the qe_lib/usb.c without the UCC
support (that is, without UCC_GETH and/or SERIAL_QE).
Fixes following link error (CONFIG_SMP should be =y to trigger this):
arch/powerpc/sysdev/built-in.o: In function `qe_usb_clock_set':
(.text+0x3cae): undefined reference to `cmxgcr_lock'
make: *** [.tmp_vmlinux1] Error 1
While at it, also add missing spinlock.h includes.
Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
---
This is for powerpc-next since nobody enables QE_USB yet.
arch/powerpc/sysdev/qe_lib/qe.c | 3 +++
arch/powerpc/sysdev/qe_lib/ucc.c | 4 +---
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/arch/powerpc/sysdev/qe_lib/qe.c b/arch/powerpc/sysdev/qe_lib/qe.c
index b3b73ae..01bce37 100644
--- a/arch/powerpc/sysdev/qe_lib/qe.c
+++ b/arch/powerpc/sysdev/qe_lib/qe.c
@@ -19,6 +19,7 @@
#include <linux/kernel.h>
#include <linux/param.h>
#include <linux/string.h>
+#include <linux/spinlock.h>
#include <linux/mm.h>
#include <linux/interrupt.h>
#include <linux/bootmem.h>
@@ -38,6 +39,8 @@ static void qe_snums_init(void);
static int qe_sdma_init(void);
static DEFINE_SPINLOCK(qe_lock);
+DEFINE_SPINLOCK(cmxgcr_lock);
+EXPORT_SYMBOL(cmxgcr_lock);
/* QE snum state */
enum qe_snum_state {
diff --git a/arch/powerpc/sysdev/qe_lib/ucc.c b/arch/powerpc/sysdev/qe_lib/ucc.c
index 1d78071..ebb442e 100644
--- a/arch/powerpc/sysdev/qe_lib/ucc.c
+++ b/arch/powerpc/sysdev/qe_lib/ucc.c
@@ -18,6 +18,7 @@
#include <linux/errno.h>
#include <linux/slab.h>
#include <linux/stddef.h>
+#include <linux/spinlock.h>
#include <linux/module.h>
#include <asm/irq.h>
@@ -26,9 +27,6 @@
#include <asm/qe.h>
#include <asm/ucc.h>
-DEFINE_SPINLOCK(cmxgcr_lock);
-EXPORT_SYMBOL(cmxgcr_lock);
-
int ucc_set_qe_mux_mii_mng(unsigned int ucc_num)
{
unsigned long flags;
--
1.5.6.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] powerpc/qe: Move cmxgcr_lock definition from the ucc.c into the qe.c
2008-11-11 15:31 [PATCH] powerpc/qe: Move cmxgcr_lock definition from the ucc.c into the qe.c Anton Vorontsov
@ 2008-11-11 17:11 ` Timur Tabi
2008-12-03 15:50 ` Kumar Gala
1 sibling, 0 replies; 3+ messages in thread
From: Timur Tabi @ 2008-11-11 17:11 UTC (permalink / raw)
To: Anton Vorontsov; +Cc: linuxppc-dev
On Tue, Nov 11, 2008 at 9:31 AM, Anton Vorontsov
<avorontsov@ru.mvista.com> wrote:
> With this patch we can compile the qe_lib/usb.c without the UCC
> support (that is, without UCC_GETH and/or SERIAL_QE).
>
> Fixes following link error (CONFIG_SMP should be =y to trigger this):
>
> arch/powerpc/sysdev/built-in.o: In function `qe_usb_clock_set':
> (.text+0x3cae): undefined reference to `cmxgcr_lock'
> make: *** [.tmp_vmlinux1] Error 1
>
> While at it, also add missing spinlock.h includes.
>
> Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
Acked-By: Timur Tabi <timur@freescale.com>
--
Timur Tabi
Linux kernel developer at Freescale
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] powerpc/qe: Move cmxgcr_lock definition from the ucc.c into the qe.c
2008-11-11 15:31 [PATCH] powerpc/qe: Move cmxgcr_lock definition from the ucc.c into the qe.c Anton Vorontsov
2008-11-11 17:11 ` Timur Tabi
@ 2008-12-03 15:50 ` Kumar Gala
1 sibling, 0 replies; 3+ messages in thread
From: Kumar Gala @ 2008-12-03 15:50 UTC (permalink / raw)
To: Anton Vorontsov; +Cc: linuxppc-dev, Timur Tabi
On Nov 11, 2008, at 9:31 AM, Anton Vorontsov wrote:
> With this patch we can compile the qe_lib/usb.c without the UCC
> support (that is, without UCC_GETH and/or SERIAL_QE).
>
> Fixes following link error (CONFIG_SMP should be =y to trigger this):
>
> arch/powerpc/sysdev/built-in.o: In function `qe_usb_clock_set':
> (.text+0x3cae): undefined reference to `cmxgcr_lock'
> make: *** [.tmp_vmlinux1] Error 1
>
> While at it, also add missing spinlock.h includes.
>
> Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
> ---
>
> This is for powerpc-next since nobody enables QE_USB yet.
>
> arch/powerpc/sysdev/qe_lib/qe.c | 3 +++
> arch/powerpc/sysdev/qe_lib/ucc.c | 4 +---
> 2 files changed, 4 insertions(+), 3 deletions(-)
applied to next.
- k
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-12-03 15:52 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-11 15:31 [PATCH] powerpc/qe: Move cmxgcr_lock definition from the ucc.c into the qe.c Anton Vorontsov
2008-11-11 17:11 ` Timur Tabi
2008-12-03 15:50 ` Kumar Gala
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).