Commit 33c14529 authored by Huisong Li's avatar Huisong Li Committed by Krzysztof Kozlowski
Browse files

w1: w1_therm: w1: Use HWMON_CHANNEL_INFO macro to simplify code

parent 0dd6770a
Loading
Loading
Loading
Loading
+1 −11
Original line number Diff line number Diff line
@@ -444,18 +444,8 @@ static int w1_read(struct device *dev, enum hwmon_sensor_types type,
	}
}

static const u32 w1_temp_config[] = {
	HWMON_T_INPUT,
	0
};

static const struct hwmon_channel_info w1_temp = {
	.type = hwmon_temp,
	.config = w1_temp_config,
};

static const struct hwmon_channel_info * const w1_info[] = {
	&w1_temp,
	HWMON_CHANNEL_INFO(temp, HWMON_T_INPUT),
	NULL
};