|
@@ -472,6 +472,34 @@ static struct sensor_device_attribute in_max[] = {
|
|
|
SENSOR_ATTR(in10_max, S_IWUSR | S_IRUGO, show_in_max, set_in_max, 10),
|
|
|
};
|
|
|
|
|
|
+static ssize_t show_vid(struct device *dev, struct device_attribute *attr, char *buf)
|
|
|
+{
|
|
|
+ struct pc87360_data *data = pc87360_update_device(dev);
|
|
|
+ return sprintf(buf, "%u\n", vid_from_reg(data->vid, data->vrm));
|
|
|
+}
|
|
|
+static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid, NULL);
|
|
|
+
|
|
|
+static ssize_t show_vrm(struct device *dev, struct device_attribute *attr, char *buf)
|
|
|
+{
|
|
|
+ struct pc87360_data *data = pc87360_update_device(dev);
|
|
|
+ return sprintf(buf, "%u\n", data->vrm);
|
|
|
+}
|
|
|
+static ssize_t set_vrm(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
|
|
|
+{
|
|
|
+ struct i2c_client *client = to_i2c_client(dev);
|
|
|
+ struct pc87360_data *data = i2c_get_clientdata(client);
|
|
|
+ data->vrm = simple_strtoul(buf, NULL, 10);
|
|
|
+ return count;
|
|
|
+}
|
|
|
+static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm, set_vrm);
|
|
|
+
|
|
|
+static ssize_t show_in_alarms(struct device *dev, struct device_attribute *attr, char *buf)
|
|
|
+{
|
|
|
+ struct pc87360_data *data = pc87360_update_device(dev);
|
|
|
+ return sprintf(buf, "%u\n", data->in_alarms);
|
|
|
+}
|
|
|
+static DEVICE_ATTR(alarms_in, S_IRUGO, show_in_alarms, NULL);
|
|
|
+
|
|
|
static ssize_t show_therm_input(struct device *dev, struct device_attribute *devattr, char *buf)
|
|
|
{
|
|
|
struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
|
|
@@ -590,34 +618,6 @@ static struct sensor_device_attribute therm_crit[] = {
|
|
|
show_therm_crit, set_therm_crit, 2+11),
|
|
|
};
|
|
|
|
|
|
-static ssize_t show_vid(struct device *dev, struct device_attribute *attr, char *buf)
|
|
|
-{
|
|
|
- struct pc87360_data *data = pc87360_update_device(dev);
|
|
|
- return sprintf(buf, "%u\n", vid_from_reg(data->vid, data->vrm));
|
|
|
-}
|
|
|
-static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid, NULL);
|
|
|
-
|
|
|
-static ssize_t show_vrm(struct device *dev, struct device_attribute *attr, char *buf)
|
|
|
-{
|
|
|
- struct pc87360_data *data = pc87360_update_device(dev);
|
|
|
- return sprintf(buf, "%u\n", data->vrm);
|
|
|
-}
|
|
|
-static ssize_t set_vrm(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
|
|
|
-{
|
|
|
- struct i2c_client *client = to_i2c_client(dev);
|
|
|
- struct pc87360_data *data = i2c_get_clientdata(client);
|
|
|
- data->vrm = simple_strtoul(buf, NULL, 10);
|
|
|
- return count;
|
|
|
-}
|
|
|
-static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm, set_vrm);
|
|
|
-
|
|
|
-static ssize_t show_in_alarms(struct device *dev, struct device_attribute *attr, char *buf)
|
|
|
-{
|
|
|
- struct pc87360_data *data = pc87360_update_device(dev);
|
|
|
- return sprintf(buf, "%u\n", data->in_alarms);
|
|
|
-}
|
|
|
-static DEVICE_ATTR(alarms_in, S_IRUGO, show_in_alarms, NULL);
|
|
|
-
|
|
|
static ssize_t show_temp_input(struct device *dev, struct device_attribute *devattr, char *buf)
|
|
|
{
|
|
|
struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
|