diff options
Diffstat (limited to 'drivers/memstick/host/jmb38x_ms.c')
| -rw-r--r-- | drivers/memstick/host/jmb38x_ms.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/memstick/host/jmb38x_ms.c b/drivers/memstick/host/jmb38x_ms.c index 4a6b866b0291..e83c3ada9389 100644 --- a/drivers/memstick/host/jmb38x_ms.c +++ b/drivers/memstick/host/jmb38x_ms.c @@ -255,11 +255,11 @@ static unsigned int jmb38x_ms_write_data(struct jmb38x_ms_host *host,  	case 3:  		host->io_word[0] |= buf[off + 2] << 16;  		host->io_pos++; -		/* fall through */ +		fallthrough;  	case 2:  		host->io_word[0] |= buf[off + 1] << 8;  		host->io_pos++; -		/* fall through */ +		fallthrough;  	case 1:  		host->io_word[0] |= buf[off];  		host->io_pos++;  |