mirror of
				https://kernel.googlesource.com/pub/scm/linux/kernel/git/stable/linux-stable.git
				synced 2025-11-04 07:44:51 +10:00 
			
		
		
		
	scsi: aacraid: Fix missing break in switch statement
Add missing break statement and fix identation issue.
This bug was found thanks to the ongoing efforts to enable
-Wimplicit-fallthrough.
Fixes: 9cb62fa24e ("aacraid: Log firmware AIF messages")
Cc: stable@vger.kernel.org
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
			
			
This commit is contained in:
		
							parent
							
								
									b9cef50921
								
							
						
					
					
						commit
						5e420fe635
					
				@ -1303,8 +1303,9 @@ static void aac_handle_aif(struct aac_dev * dev, struct fib * fibptr)
 | 
			
		||||
				  ADD : DELETE;
 | 
			
		||||
				break;
 | 
			
		||||
			}
 | 
			
		||||
			case AifBuManagerEvent:
 | 
			
		||||
				aac_handle_aif_bu(dev, aifcmd);
 | 
			
		||||
			break;
 | 
			
		||||
		case AifBuManagerEvent:
 | 
			
		||||
			aac_handle_aif_bu(dev, aifcmd);
 | 
			
		||||
			break;
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user