mirror of https://gitee.com/openkylin/linux.git
[PATCH] powerpc: a couple of trivial compile warning fixes
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:
parent
cf66c897d7
commit
4d177fbfda
|
@ -860,7 +860,10 @@ static int __init early_init_dt_scan_cpus(unsigned long node,
|
||||||
{
|
{
|
||||||
static int logical_cpuid = 0;
|
static int logical_cpuid = 0;
|
||||||
char *type = of_get_flat_dt_prop(node, "device_type", NULL);
|
char *type = of_get_flat_dt_prop(node, "device_type", NULL);
|
||||||
u32 *prop, *intserv;
|
#ifdef CONFIG_ALTIVEC
|
||||||
|
u32 *prop;
|
||||||
|
#endif
|
||||||
|
u32 *intserv;
|
||||||
int i, nthreads;
|
int i, nthreads;
|
||||||
unsigned long len;
|
unsigned long len;
|
||||||
int found = 0;
|
int found = 0;
|
||||||
|
|
|
@ -455,8 +455,6 @@ static void pseries_dedicated_idle_sleep(void)
|
||||||
|
|
||||||
static void pseries_shared_idle_sleep(void)
|
static void pseries_shared_idle_sleep(void)
|
||||||
{
|
{
|
||||||
unsigned int cpu = smp_processor_id();
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Indicate to the HV that we are idle. Now would be
|
* Indicate to the HV that we are idle. Now would be
|
||||||
* a good time to find other work to dispatch.
|
* a good time to find other work to dispatch.
|
||||||
|
|
Loading…
Reference in New Issue