From 0b0404bf84432f0ee74840d674b93bacee7eee68 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Mon, 9 Jan 2012 18:29:51 +0100 Subject: Add 'fall through' comments to case statements without break These comments are used by static code analysis tools and in code reviews to avoid false warnings because of missing break statements. The case statements handled here were reported by coverity. Reviewed-by: Peter Maydell Signed-off-by: Stefan Weil Signed-off-by: Stefan Hajnoczi --- hw/pcnet.c | 1 + 1 file changed, 1 insertion(+) (limited to 'hw') diff --git a/hw/pcnet.c b/hw/pcnet.c index cba253ba7b..306dc6ed7e 100644 --- a/hw/pcnet.c +++ b/hw/pcnet.c @@ -1505,6 +1505,7 @@ static void pcnet_bcr_writew(PCNetState *s, uint32_t rap, uint32_t val) #ifdef PCNET_DEBUG printf("BCR_SWS=0x%04x\n", val); #endif + /* fall through */ case BCR_LNKST: case BCR_LED1: case BCR_LED2: -- cgit v1.2.3