mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	netdevsim: fix fall-through annotation
Replace "pass through" with a proper "fall through" annotation in order to fix the following warning: drivers/net/netdevsim/bus.c: In function ‘new_device_store’: drivers/net/netdevsim/bus.c:170:14: warning: this statement may fall through [-Wimplicit-fallthrough=] port_count = 1; ~~~~~~~~~~~^~~ drivers/net/netdevsim/bus.c:172:2: note: here case 2: ^~~~ Warning level 3 was used: -Wimplicit-fallthrough=3 This fix is part of the ongoing efforts to enable -Wimplicit-fallthrough Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com> Acked-by: Jakub Kicinski <jakub.kicinski@netronome.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
		
							parent
							
								
									4a46a7c353
								
							
						
					
					
						commit
						6d1474a94e
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -168,7 +168,7 @@ new_device_store(struct bus_type *bus, const char *buf, size_t count)
 | 
				
			||||||
	switch (err) {
 | 
						switch (err) {
 | 
				
			||||||
	case 1:
 | 
						case 1:
 | 
				
			||||||
		port_count = 1;
 | 
							port_count = 1;
 | 
				
			||||||
		/* pass through */
 | 
							/* fall through */
 | 
				
			||||||
	case 2:
 | 
						case 2:
 | 
				
			||||||
		if (id > INT_MAX) {
 | 
							if (id > INT_MAX) {
 | 
				
			||||||
			pr_err("Value of \"id\" is too big.\n");
 | 
								pr_err("Value of \"id\" is too big.\n");
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue