1
0
Fork 0

Staging: iio: adc: fix indent on break statement

Fix indent warning when building with gcc 6:
drivers/staging/iio/adc/ad7192.c:239:4: warning: statement is indented
  as if it were guarded by... [-Wmisleading-indentation]

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
hifive-unleashed-5.1
Colin Ian King 2016-01-23 19:33:10 +00:00 committed by Jonathan Cameron
parent 131497acd8
commit b6acb0cfc2
1 changed files with 1 additions and 1 deletions

View File

@ -236,7 +236,7 @@ static int ad7192_setup(struct ad7192_state *st,
st->mclk = pdata->ext_clk_hz;
else
st->mclk = AD7192_INT_FREQ_MHZ;
break;
break;
default:
ret = -EINVAL;
goto out;