Commit 1afacfb0 authored by Alexandru Ardelean's avatar Alexandru Ardelean Committed by Jonathan Cameron

staging: iio: ad5933: rename ext_clk_Hz -> ext_clk_hz

The checkpatch script doesn't like camel-case names.
Renamed the variable.
Signed-off-by: default avatarAlexandru Ardelean <alexandru.ardelean@analog.com>
Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent a7ae845c
...@@ -84,13 +84,13 @@ ...@@ -84,13 +84,13 @@
/** /**
* struct ad5933_platform_data - platform specific data * struct ad5933_platform_data - platform specific data
* @ext_clk_Hz: the external clock frequency in Hz, if not set * @ext_clk_hz: the external clock frequency in Hz, if not set
* the driver uses the internal clock (16.776 MHz) * the driver uses the internal clock (16.776 MHz)
* @vref_mv: the external reference voltage in millivolt * @vref_mv: the external reference voltage in millivolt
*/ */
struct ad5933_platform_data { struct ad5933_platform_data {
unsigned long ext_clk_Hz; unsigned long ext_clk_hz;
unsigned short vref_mv; unsigned short vref_mv;
}; };
...@@ -726,8 +726,8 @@ static int ad5933_probe(struct i2c_client *client, ...@@ -726,8 +726,8 @@ static int ad5933_probe(struct i2c_client *client,
else else
st->vref_mv = pdata->vref_mv; st->vref_mv = pdata->vref_mv;
if (pdata->ext_clk_Hz) { if (pdata->ext_clk_hz) {
st->mclk_hz = pdata->ext_clk_Hz; st->mclk_hz = pdata->ext_clk_hz;
st->ctrl_lb = AD5933_CTRL_EXT_SYSCLK; st->ctrl_lb = AD5933_CTRL_EXT_SYSCLK;
} else { } else {
st->mclk_hz = AD5933_INT_OSC_FREQ_Hz; st->mclk_hz = AD5933_INT_OSC_FREQ_Hz;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment