|
@@ -19,49 +19,49 @@
|
|
|
#include "hmc5843.h"
|
|
#include "hmc5843.h"
|
|
|
|
|
|
|
|
static const struct regmap_range hmc5843_readable_ranges[] = {
|
|
static const struct regmap_range hmc5843_readable_ranges[] = {
|
|
|
- regmap_reg_range(0, HMC5843_ID_END),
|
|
|
|
|
|
|
+ regmap_reg_range(0, HMC5843_ID_END),
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
static struct regmap_access_table hmc5843_readable_table = {
|
|
static struct regmap_access_table hmc5843_readable_table = {
|
|
|
- .yes_ranges = hmc5843_readable_ranges,
|
|
|
|
|
- .n_yes_ranges = ARRAY_SIZE(hmc5843_readable_ranges),
|
|
|
|
|
|
|
+ .yes_ranges = hmc5843_readable_ranges,
|
|
|
|
|
+ .n_yes_ranges = ARRAY_SIZE(hmc5843_readable_ranges),
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
static const struct regmap_range hmc5843_writable_ranges[] = {
|
|
static const struct regmap_range hmc5843_writable_ranges[] = {
|
|
|
- regmap_reg_range(0, HMC5843_MODE_REG),
|
|
|
|
|
|
|
+ regmap_reg_range(0, HMC5843_MODE_REG),
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
static struct regmap_access_table hmc5843_writable_table = {
|
|
static struct regmap_access_table hmc5843_writable_table = {
|
|
|
- .yes_ranges = hmc5843_writable_ranges,
|
|
|
|
|
- .n_yes_ranges = ARRAY_SIZE(hmc5843_writable_ranges),
|
|
|
|
|
|
|
+ .yes_ranges = hmc5843_writable_ranges,
|
|
|
|
|
+ .n_yes_ranges = ARRAY_SIZE(hmc5843_writable_ranges),
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
static const struct regmap_range hmc5843_volatile_ranges[] = {
|
|
static const struct regmap_range hmc5843_volatile_ranges[] = {
|
|
|
- regmap_reg_range(HMC5843_DATA_OUT_MSB_REGS, HMC5843_STATUS_REG),
|
|
|
|
|
|
|
+ regmap_reg_range(HMC5843_DATA_OUT_MSB_REGS, HMC5843_STATUS_REG),
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
static struct regmap_access_table hmc5843_volatile_table = {
|
|
static struct regmap_access_table hmc5843_volatile_table = {
|
|
|
- .yes_ranges = hmc5843_volatile_ranges,
|
|
|
|
|
- .n_yes_ranges = ARRAY_SIZE(hmc5843_volatile_ranges),
|
|
|
|
|
|
|
+ .yes_ranges = hmc5843_volatile_ranges,
|
|
|
|
|
+ .n_yes_ranges = ARRAY_SIZE(hmc5843_volatile_ranges),
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
static struct regmap_config hmc5843_i2c_regmap_config = {
|
|
static struct regmap_config hmc5843_i2c_regmap_config = {
|
|
|
- .reg_bits = 8,
|
|
|
|
|
- .val_bits = 8,
|
|
|
|
|
|
|
+ .reg_bits = 8,
|
|
|
|
|
+ .val_bits = 8,
|
|
|
|
|
|
|
|
- .rd_table = &hmc5843_readable_table,
|
|
|
|
|
- .wr_table = &hmc5843_writable_table,
|
|
|
|
|
- .volatile_table = &hmc5843_volatile_table,
|
|
|
|
|
|
|
+ .rd_table = &hmc5843_readable_table,
|
|
|
|
|
+ .wr_table = &hmc5843_writable_table,
|
|
|
|
|
+ .volatile_table = &hmc5843_volatile_table,
|
|
|
|
|
|
|
|
- .cache_type = REGCACHE_RBTREE,
|
|
|
|
|
|
|
+ .cache_type = REGCACHE_RBTREE,
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
static int hmc5843_i2c_probe(struct i2c_client *client,
|
|
static int hmc5843_i2c_probe(struct i2c_client *client,
|
|
|
const struct i2c_device_id *id)
|
|
const struct i2c_device_id *id)
|
|
|
{
|
|
{
|
|
|
return hmc5843_common_probe(&client->dev,
|
|
return hmc5843_common_probe(&client->dev,
|
|
|
- devm_regmap_init_i2c(client, &hmc5843_i2c_regmap_config),
|
|
|
|
|
- id->driver_data);
|
|
|
|
|
|
|
+ devm_regmap_init_i2c(client, &hmc5843_i2c_regmap_config),
|
|
|
|
|
+ id->driver_data);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
static int hmc5843_i2c_remove(struct i2c_client *client)
|
|
static int hmc5843_i2c_remove(struct i2c_client *client)
|