Commit 66ad85d1 authored by Simon Guinot's avatar Simon Guinot Committed by Greg Kroah-Hartman

staging: nvec: fix block comments

This patch fixes a couple of checkpatch warnings about block comments.
Signed-off-by: default avatarSimon Guinot <simon.guinot@sequanux.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 377ef3e9
...@@ -508,8 +508,10 @@ static void nvec_rx_completed(struct nvec_chip *nvec) ...@@ -508,8 +508,10 @@ static void nvec_rx_completed(struct nvec_chip *nvec)
spin_lock(&nvec->rx_lock); spin_lock(&nvec->rx_lock);
/* add the received data to the work list /*
and move the ring buffer pointer to the next entry */ * Add the received data to the work list and move the ring buffer
* pointer to the next entry.
*/
list_add_tail(&nvec->rx->node, &nvec->rx_data); list_add_tail(&nvec->rx->node, &nvec->rx_data);
spin_unlock(&nvec->rx_lock); spin_unlock(&nvec->rx_lock);
......
...@@ -207,8 +207,10 @@ static int nvec_power_bat_notifier(struct notifier_block *nb, ...@@ -207,8 +207,10 @@ static int nvec_power_bat_notifier(struct notifier_block *nb,
case TYPE: case TYPE:
memcpy(power->bat_type, &res->plc, res->length - 2); memcpy(power->bat_type, &res->plc, res->length - 2);
power->bat_type[res->length - 2] = '\0'; power->bat_type[res->length - 2] = '\0';
/* this differs a little from the spec /*
fill in more if you find some */ * This differs a little from the spec fill in more if you find
* some.
*/
if (!strncmp(power->bat_type, "Li", 30)) if (!strncmp(power->bat_type, "Li", 30))
power->bat_type_enum = POWER_SUPPLY_TECHNOLOGY_LION; power->bat_type_enum = POWER_SUPPLY_TECHNOLOGY_LION;
else else
...@@ -356,12 +358,14 @@ static void nvec_power_poll(struct work_struct *work) ...@@ -356,12 +358,14 @@ static void nvec_power_poll(struct work_struct *work)
if (counter >= ARRAY_SIZE(bat_iter)) if (counter >= ARRAY_SIZE(bat_iter))
counter = 0; counter = 0;
/* AC status via sys req */ /* AC status via sys req */
nvec_write_async(power->nvec, buf, 2); nvec_write_async(power->nvec, buf, 2);
msleep(100); msleep(100);
/* select a battery request function via round robin /*
doing it all at once seems to overload the power supply */ * Select a battery request function via round robin doing it all at
* once seems to overload the power supply.
*/
buf[0] = NVEC_BAT; buf[0] = NVEC_BAT;
buf[1] = bat_iter[counter++]; buf[1] = bat_iter[counter++];
nvec_write_async(power->nvec, buf, 2); nvec_write_async(power->nvec, buf, 2);
......
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