Commit fa799617 authored by Pawel Lebioda's avatar Pawel Lebioda Committed by Greg Kroah-Hartman

staging: nvec: insert blank lines after declarations

This patch fixes coding style warnings reported by checkpatch.pl:
"Missing a blank line after declarations".
Signed-off-by: default avatarPawel Lebioda <pawel.lebioda89@gmail.com>
Acked-by: default avatarMarc Dietrich <marvin24@gmx.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f420c6c8
...@@ -35,6 +35,7 @@ static void nvec_led_brightness_set(struct led_classdev *led_cdev, ...@@ -35,6 +35,7 @@ static void nvec_led_brightness_set(struct led_classdev *led_cdev,
{ {
struct nvec_led *led = to_nvec_led(led_cdev); struct nvec_led *led = to_nvec_led(led_cdev);
unsigned char buf[] = NVEC_LED_REQ; unsigned char buf[] = NVEC_LED_REQ;
buf[4] = value; buf[4] = value;
nvec_write_async(led->nvec, buf, sizeof(buf)); nvec_write_async(led->nvec, buf, sizeof(buf));
......
...@@ -226,6 +226,7 @@ static int nvec_power_get_property(struct power_supply *psy, ...@@ -226,6 +226,7 @@ static int nvec_power_get_property(struct power_supply *psy,
union power_supply_propval *val) union power_supply_propval *val)
{ {
struct nvec_power *power = dev_get_drvdata(psy->dev->parent); struct nvec_power *power = dev_get_drvdata(psy->dev->parent);
switch (psp) { switch (psp) {
case POWER_SUPPLY_PROP_ONLINE: case POWER_SUPPLY_PROP_ONLINE:
val->intval = power->on; val->intval = power->on;
......
...@@ -53,12 +53,14 @@ static struct nvec_ps2 ps2_dev; ...@@ -53,12 +53,14 @@ static struct nvec_ps2 ps2_dev;
static int ps2_startstreaming(struct serio *ser_dev) static int ps2_startstreaming(struct serio *ser_dev)
{ {
unsigned char buf[] = { NVEC_PS2, AUTO_RECEIVE_N, PACKET_SIZE }; unsigned char buf[] = { NVEC_PS2, AUTO_RECEIVE_N, PACKET_SIZE };
return nvec_write_async(ps2_dev.nvec, buf, sizeof(buf)); return nvec_write_async(ps2_dev.nvec, buf, sizeof(buf));
} }
static void ps2_stopstreaming(struct serio *ser_dev) static void ps2_stopstreaming(struct serio *ser_dev)
{ {
unsigned char buf[] = { NVEC_PS2, CANCEL_AUTO_RECEIVE }; unsigned char buf[] = { NVEC_PS2, CANCEL_AUTO_RECEIVE };
nvec_write_async(ps2_dev.nvec, buf, sizeof(buf)); nvec_write_async(ps2_dev.nvec, buf, sizeof(buf));
} }
......
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