Commit 4bebced8 authored by Guenter Roeck's avatar Guenter Roeck Committed by Guenter Roeck

hwmon: (emc1403) Fix multi-line comments

Cc: Kalhan Trisal <kalhan.trisal@intel.com>
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
parent ca3c7b63
...@@ -41,8 +41,10 @@ ...@@ -41,8 +41,10 @@
struct thermal_data { struct thermal_data {
struct device *hwmon_dev; struct device *hwmon_dev;
struct mutex mutex; struct mutex mutex;
/* Cache the hyst value so we don't keep re-reading it. In theory /*
we could cache it forever as nobody else should be writing it. */ * Cache the hyst value so we don't keep re-reading it. In theory
* we could cache it forever as nobody else should be writing it.
*/
u8 cached_hyst; u8 cached_hyst;
unsigned long hyst_valid; unsigned long hyst_valid;
}; };
...@@ -283,8 +285,10 @@ static int emc1403_detect(struct i2c_client *client, ...@@ -283,8 +285,10 @@ static int emc1403_detect(struct i2c_client *client,
case 0x23: case 0x23:
strlcpy(info->type, "emc1423", I2C_NAME_SIZE); strlcpy(info->type, "emc1423", I2C_NAME_SIZE);
break; break;
/* Note: 0x25 is the 1404 which is very similar and this /*
driver could be extended */ * Note: 0x25 is the 1404 which is very similar and this
* driver could be extended
*/
default: default:
return -ENODEV; return -ENODEV;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment