diff options
| author | Anton Vorontsov <avorontsov@ru.mvista.com> | 2008-11-11 18:31:39 +0300 | 
|---|---|---|
| committer | Kumar Gala <galak@kernel.crashing.org> | 2008-12-03 10:47:36 -0600 | 
| commit | 09a3fba8c132a55f153fd65fc1085b717a6193c8 (patch) | |
| tree | 0fd4772dfa1c1bb3dcd647885b491b5b617dea3b /arch/powerpc/sysdev/qe_lib/ucc.c | |
| parent | d3a8cdab2ff2f8acbe48e18ed471b0812785e390 (diff) | |
| download | olio-linux-3.10-09a3fba8c132a55f153fd65fc1085b717a6193c8.tar.xz olio-linux-3.10-09a3fba8c132a55f153fd65fc1085b717a6193c8.zip  | |
powerpc/qe: Move cmxgcr_lock definition from the ucc.c into the qe.c
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>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/sysdev/qe_lib/ucc.c')
| -rw-r--r-- | arch/powerpc/sysdev/qe_lib/ucc.c | 4 | 
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/powerpc/sysdev/qe_lib/ucc.c b/arch/powerpc/sysdev/qe_lib/ucc.c index 1d78071aad7..ebb442ea191 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;  |