1
0
Fork 0

firmware: arm_scpi: remove struct sensor_capabilities

One more single-element struct was left, remove it.

Tested-by: Kevin Hilman <khilman@baylibre.com>
Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
hifive-unleashed-5.1
Heiner Kallweit 2017-12-05 23:17:13 +01:00 committed by Sudeep Holla
parent 5204abd352
commit 17431b7874
1 changed files with 4 additions and 8 deletions

View File

@ -331,10 +331,6 @@ struct dvfs_set {
u8 index;
} __packed;
struct sensor_capabilities {
__le16 sensors;
} __packed;
struct _scpi_sensor_info {
__le16 sensor_id;
u8 class;
@ -730,13 +726,13 @@ static int scpi_dvfs_add_opps_to_device(struct device *dev)
static int scpi_sensor_get_capability(u16 *sensors)
{
struct sensor_capabilities cap_buf;
__le16 cap;
int ret;
ret = scpi_send_message(CMD_SENSOR_CAPABILITIES, NULL, 0, &cap_buf,
sizeof(cap_buf));
ret = scpi_send_message(CMD_SENSOR_CAPABILITIES, NULL, 0, &cap,
sizeof(cap));
if (!ret)
*sensors = le16_to_cpu(cap_buf.sensors);
*sensors = le16_to_cpu(cap);
return ret;
}