Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c3d84a4d authored by Heiko Carstens's avatar Heiko Carstens Committed by David S. Miller
Browse files

iucv: fix build error on !SMP



Since a5fbb6d1
"KVM: fix !SMP build error" smp_call_function isn't a define anymore
that folds into nothing but a define that calls up_smp_call_function
with all parameters. Hence we cannot #ifdef out the unused code
anymore...
This seems to be the preferred method, so do this for s390 as well.

net/iucv/iucv.c: In function 'iucv_cleanup_queue':
net/iucv/iucv.c:657: error: '__iucv_cleanup_queue' undeclared

Signed-off-by: default avatarHeiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: default avatarJosef 'Jeff' Sipek <jeffpc@josefsipek.net>
Signed-off-by: default avatarUrsula Braun <braunu@de.ibm.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d152a7d8
Loading
Loading
Loading
Loading
+0 −2
Original line number Original line Diff line number Diff line
@@ -621,7 +621,6 @@ static int iucv_sever_pathid(u16 pathid, u8 userdata[16])
	return iucv_call_b2f0(IUCV_SEVER, parm);
	return iucv_call_b2f0(IUCV_SEVER, parm);
}
}


#ifdef CONFIG_SMP
/**
/**
 * __iucv_cleanup_queue
 * __iucv_cleanup_queue
 * @dummy: unused dummy argument
 * @dummy: unused dummy argument
@@ -632,7 +631,6 @@ static int iucv_sever_pathid(u16 pathid, u8 userdata[16])
static void __iucv_cleanup_queue(void *dummy)
static void __iucv_cleanup_queue(void *dummy)
{
{
}
}
#endif


/**
/**
 * iucv_cleanup_queue
 * iucv_cleanup_queue