Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 304748
b: refs/heads/master
c: 4906a15
h: refs/heads/master
v: v3
  • Loading branch information
Peter Meerwald authored and Greg Kroah-Hartman committed May 17, 2012
1 parent 71c8d18 commit 1207b4c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c7c34af04998655c83db22de2b943cae27b942f7
refs/heads/master: 4906a15c037f423b711ed2927836568264761927
26 changes: 13 additions & 13 deletions trunk/drivers/staging/iio/magnetometer/hmc5843.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ static const int hmc5843_regval_to_nanoscale[] = {
* 6 | (+-)4.5 | 390
* 7 | (+-)6.5 | 280
*/
static const int regval_to_input_field_mg[] = {
static const int hmc5843_regval_to_input_field_mga[] = {
700,
1000,
1500,
Expand All @@ -138,7 +138,7 @@ static const int regval_to_input_field_mg[] = {
* 6 | 50
* 7 | Not used
*/
static const char * const regval_to_samp_freq[] = {
static const char * const hmc5843_regval_to_sample_freq[] = {
"0.5",
"1",
"2",
Expand Down Expand Up @@ -355,7 +355,7 @@ static s32 hmc5843_set_rate(struct i2c_client *client,
static int hmc5843_check_sampling_frequency(struct hmc5843_data *data,
const char *buf)
{
const char * const *samp_freq = regval_to_samp_freq;
const char * const *samp_freq = hmc5843_regval_to_sample_freq;
int i;

for (i = 0; i < HMC5843_RATE_NOT_USED; i++) {
Expand All @@ -367,7 +367,7 @@ static int hmc5843_check_sampling_frequency(struct hmc5843_data *data,
return -EINVAL;
}

static ssize_t set_sampling_frequency(struct device *dev,
static ssize_t hmc5843_set_sampling_frequency(struct device *dev,
struct device_attribute *attr,
const char *buf, size_t count)
{
Expand Down Expand Up @@ -397,7 +397,7 @@ static ssize_t set_sampling_frequency(struct device *dev,
return count;
}

static ssize_t show_sampling_frequency(struct device *dev,
static ssize_t hmc5843_show_sampling_frequency(struct device *dev,
struct device_attribute *attr, char *buf)
{
struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Expand All @@ -409,16 +409,16 @@ static ssize_t show_sampling_frequency(struct device *dev,
if (rate < 0)
return rate;
rate = (rate & HMC5843_RATE_BITMASK) >> HMC5843_RATE_OFFSET;
return sprintf(buf, "%s\n", regval_to_samp_freq[rate]);
return sprintf(buf, "%s\n", hmc5843_regval_to_sample_freq[rate]);
}

static IIO_DEVICE_ATTR(sampling_frequency,
S_IWUSR | S_IRUGO,
show_sampling_frequency,
set_sampling_frequency,
hmc5843_show_sampling_frequency,
hmc5843_set_sampling_frequency,
HMC5843_CONFIG_REG_A);

static ssize_t show_range(struct device *dev,
static ssize_t hmc5843_show_range_gain(struct device *dev,
struct device_attribute *attr,
char *buf)
{
Expand All @@ -427,10 +427,10 @@ static ssize_t show_range(struct device *dev,
struct hmc5843_data *data = iio_priv(indio_dev);

range = data->range;
return sprintf(buf, "%d\n", regval_to_input_field_mg[range]);
return sprintf(buf, "%d\n", hmc5843_regval_to_input_field_mga[range]);
}

static ssize_t set_range(struct device *dev,
static ssize_t hmc5843_set_range_gain(struct device *dev,
struct device_attribute *attr,
const char *buf,
size_t count)
Expand Down Expand Up @@ -467,8 +467,8 @@ static ssize_t set_range(struct device *dev,

static IIO_DEVICE_ATTR(in_magn_range,
S_IWUSR | S_IRUGO,
show_range,
set_range,
hmc5843_show_range_gain,
hmc5843_set_range_gain,
HMC5843_CONFIG_REG_B);

static int hmc5843_read_raw(struct iio_dev *indio_dev,
Expand Down

0 comments on commit 1207b4c

Please sign in to comment.