Browse Source

[SPARC64]: Tweak assertions in sun4v_build_virq().

They are too strict.

Signed-off-by: David S. Miller <davem@davemloft.net>
David S. Miller 18 years ago
parent
commit
5f7426c0e1
1 changed files with 2 additions and 2 deletions
  1. 2 2
      arch/sparc64/kernel/irq.c

+ 2 - 2
arch/sparc64/kernel/irq.c

@@ -701,10 +701,10 @@ unsigned int sun4v_build_virq(u32 devhandle, unsigned int devino)
 {
 {
 	unsigned long sysino, hv_err;
 	unsigned long sysino, hv_err;
 
 
-	BUG_ON(devhandle & ~IMAP_IGN);
-	BUG_ON(devino & ~IMAP_INO);
+	BUG_ON(devhandle & devino);
 
 
 	sysino = devhandle | devino;
 	sysino = devhandle | devino;
+	BUG_ON(sysino & ~(IMAP_IGN | IMAP_INO));
 
 
 	hv_err = sun4v_vintr_set_cookie(devhandle, devino, sysino);
 	hv_err = sun4v_vintr_set_cookie(devhandle, devino, sysino);
 	if (hv_err) {
 	if (hv_err) {