diff options
Diffstat (limited to 'arch/x86/lib')
| -rw-r--r-- | arch/x86/lib/cmdline.c | 8 | ||||
| -rw-r--r-- | arch/x86/lib/insn-eval.c | 6 | 
2 files changed, 6 insertions, 8 deletions
diff --git a/arch/x86/lib/cmdline.c b/arch/x86/lib/cmdline.c index 4f1719e22d3c..b6da09339308 100644 --- a/arch/x86/lib/cmdline.c +++ b/arch/x86/lib/cmdline.c @@ -58,7 +58,7 @@ __cmdline_find_option_bool(const char *cmdline, int max_cmdline_size,  			state = st_wordcmp;  			opptr = option;  			wstart = pos; -			/* fall through */ +			fallthrough;  		case st_wordcmp:  			if (!*opptr) { @@ -89,7 +89,7 @@ __cmdline_find_option_bool(const char *cmdline, int max_cmdline_size,  				break;  			}  			state = st_wordskip; -			/* fall through */ +			fallthrough;  		case st_wordskip:  			if (!c) @@ -151,7 +151,7 @@ __cmdline_find_option(const char *cmdline, int max_cmdline_size,  			state = st_wordcmp;  			opptr = option; -			/* fall through */ +			fallthrough;  		case st_wordcmp:  			if ((c == '=') && !*opptr) { @@ -172,7 +172,7 @@ __cmdline_find_option(const char *cmdline, int max_cmdline_size,  				break;  			}  			state = st_wordskip; -			/* fall through */ +			fallthrough;  		case st_wordskip:  			if (myisspace(c)) diff --git a/arch/x86/lib/insn-eval.c b/arch/x86/lib/insn-eval.c index 31600d851fd8..5e69603ff63f 100644 --- a/arch/x86/lib/insn-eval.c +++ b/arch/x86/lib/insn-eval.c @@ -179,7 +179,7 @@ static int resolve_default_seg(struct insn *insn, struct pt_regs *regs, int off)  		if (insn->addr_bytes == 2)  			return -EINVAL; -		/* fall through */ +		fallthrough;  	case -EDOM:  	case offsetof(struct pt_regs, bx): @@ -362,7 +362,6 @@ static short get_segment_selector(struct pt_regs *regs, int seg_reg_idx)  		case INAT_SEG_REG_GS:  			return vm86regs->gs;  		case INAT_SEG_REG_IGNORE: -			/* fall through */  		default:  			return -EINVAL;  		} @@ -386,7 +385,6 @@ static short get_segment_selector(struct pt_regs *regs, int seg_reg_idx)  		 */  		return get_user_gs(regs);  	case INAT_SEG_REG_IGNORE: -		/* fall through */  	default:  		return -EINVAL;  	} @@ -786,7 +784,7 @@ int insn_get_code_seg_params(struct pt_regs *regs)  		 */  		return INSN_CODE_SEG_PARAMS(4, 8);  	case 3: /* Invalid setting. CS.L=1, CS.D=1 */ -		/* fall through */ +		fallthrough;  	default:  		return -EINVAL;  	}  |