summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorpgoyette <pgoyette@NetBSD.org>2016-07-18 21:09:05 +0000
committerpgoyette <pgoyette@NetBSD.org>2016-07-18 21:09:05 +0000
commite7428ede725d047bfe21fddd51aa307becaecc6a (patch)
treeef1f89cd41f73d6a440d4f946daab3d5f2fb9744 /sys/dev
parent64ed302e1ff6792dec3ee610134d8c3aef0e80ea (diff)
Insert missing 'break;' statements.
CID 1364142
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/piixpm.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/pci/piixpm.c b/sys/dev/pci/piixpm.c
index 52dd27137d7..80684f4eda8 100644
--- a/sys/dev/pci/piixpm.c
+++ b/sys/dev/pci/piixpm.c
@@ -1,4 +1,4 @@
-/* $NetBSD: piixpm.c,v 1.49 2016/07/11 11:31:51 msaitoh Exp $ */
+/* $NetBSD: piixpm.c,v 1.50 2016/07/18 21:09:05 pgoyette Exp $ */
/* $OpenBSD: piixpm.c,v 1.20 2006/02/27 08:25:02 grange Exp $ */
/*
@@ -22,7 +22,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: piixpm.c,v 1.49 2016/07/11 11:31:51 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: piixpm.c,v 1.50 2016/07/18 21:09:05 pgoyette Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -144,11 +144,13 @@ piixpm_match(device_t parent, cfdata_t match, void *aux)
case PCI_PRODUCT_SERVERWORKS_HT1000SB:
return 1;
}
+ break;
case PCI_VENDOR_AMD:
switch (PCI_PRODUCT(pa->pa_id)) {
case PCI_PRODUCT_AMD_HUDSON_SMB:
return 1;
}
+ break;
}
return 0;