hwmon: (asus_atk0110) Fix multi-line comments

Cc: Luca Tettamanti <kronos.it@gmail.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Acked-by: Luca Tettamanti <kronos.it@gmail.com>
This commit is contained in:
Guenter Roeck 2012-01-19 11:02:16 -08:00 коммит произвёл Guenter Roeck
Родитель 3c4c497191
Коммит 75bdc936ea
1 изменённых файлов: 10 добавлений и 5 удалений

Просмотреть файл

@ -38,7 +38,8 @@ static const struct dmi_system_id __initconst atk_force_new_if[] = {
{ } { }
}; };
/* Minimum time between readings, enforced in order to avoid /*
* Minimum time between readings, enforced in order to avoid
* hogging the CPU. * hogging the CPU.
*/ */
#define CACHE_TIME HZ #define CACHE_TIME HZ
@ -161,7 +162,8 @@ struct atk_sensor_data {
char const *acpi_name; char const *acpi_name;
}; };
/* Return buffer format: /*
* Return buffer format:
* [0-3] "value" is valid flag * [0-3] "value" is valid flag
* [4-7] value * [4-7] value
* [8- ] unknown stuff on newer mobos * [8- ] unknown stuff on newer mobos
@ -310,7 +312,8 @@ static union acpi_object *atk_get_pack_member(struct atk_data *data,
} }
/* New package format is: /*
* New package format is:
* - flag (int) * - flag (int)
* class - used for de-muxing the request to the correct GITn * class - used for de-muxing the request to the correct GITn
* type (volt, temp, fan) * type (volt, temp, fan)
@ -613,7 +616,8 @@ static int atk_read_value_new(struct atk_sensor_data *sensor, u64 *value)
buf = (struct atk_acpi_ret_buffer *)obj->buffer.pointer; buf = (struct atk_acpi_ret_buffer *)obj->buffer.pointer;
if (buf->flags == 0) { if (buf->flags == 0) {
/* The reading is not valid, possible causes: /*
* The reading is not valid, possible causes:
* - sensor failure * - sensor failure
* - enumeration was FUBAR (and we didn't notice) * - enumeration was FUBAR (and we didn't notice)
*/ */
@ -1311,7 +1315,8 @@ static int atk_probe_if(struct atk_data *data)
dev_dbg(dev, "method " METHOD_WRITE " not found: %s\n", dev_dbg(dev, "method " METHOD_WRITE " not found: %s\n",
acpi_format_exception(status)); acpi_format_exception(status));
/* Check for hwmon methods: first check "old" style methods; note that /*
* Check for hwmon methods: first check "old" style methods; note that
* both may be present: in this case we stick to the old interface; * both may be present: in this case we stick to the old interface;
* analysis of multiple DSDTs indicates that when both interfaces * analysis of multiple DSDTs indicates that when both interfaces
* are present the new one (GGRP/GITM) is not functional. * are present the new one (GGRP/GITM) is not functional.