src/ec: Get rid of unnecessary blank line {before,after} brace
Change-Id: I9f7c4bdd9299e686c375aced221a72994ef2d6ed Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/61556 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
This commit is contained in:
parent
f73e49a784
commit
2c079fce45
|
@ -113,7 +113,6 @@ static void ene932_init(struct device *dev)
|
||||||
|
|
||||||
printk(BIOS_DEBUG, "Compal ENE932: Initializing keyboard.\n");
|
printk(BIOS_DEBUG, "Compal ENE932: Initializing keyboard.\n");
|
||||||
pc_keyboard_init(NO_AUX_DEVICE);
|
pc_keyboard_init(NO_AUX_DEVICE);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct device_operations ops = {
|
static struct device_operations ops = {
|
||||||
|
|
|
@ -1775,7 +1775,6 @@ int google_chromeec_regulator_enable(uint32_t index, uint8_t enable)
|
||||||
|
|
||||||
int google_chromeec_regulator_is_enabled(uint32_t index, uint8_t *enabled)
|
int google_chromeec_regulator_is_enabled(uint32_t index, uint8_t *enabled)
|
||||||
{
|
{
|
||||||
|
|
||||||
struct ec_params_regulator_is_enabled params = {
|
struct ec_params_regulator_is_enabled params = {
|
||||||
.index = index,
|
.index = index,
|
||||||
};
|
};
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
#define EC_LENOVO_H8EC_CHIP_H
|
#define EC_LENOVO_H8EC_CHIP_H
|
||||||
|
|
||||||
struct ec_lenovo_h8_config {
|
struct ec_lenovo_h8_config {
|
||||||
|
|
||||||
u8 config0;
|
u8 config0;
|
||||||
u8 config1;
|
u8 config1;
|
||||||
u8 config2;
|
u8 config2;
|
||||||
|
|
|
@ -18,7 +18,6 @@ void h8_trackpoint_enable(int on)
|
||||||
{
|
{
|
||||||
ec_write(H8_TRACKPOINT_CTRL,
|
ec_write(H8_TRACKPOINT_CTRL,
|
||||||
on ? H8_TRACKPOINT_ON : H8_TRACKPOINT_OFF);
|
on ? H8_TRACKPOINT_ON : H8_TRACKPOINT_OFF);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Controls radio-off pin in WLAN MiniPCIe slot. */
|
/* Controls radio-off pin in WLAN MiniPCIe slot. */
|
||||||
|
@ -119,7 +118,6 @@ void h8_disable_event(int event)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
ec_clr_bit(0x10 + (event >> 3), event & 7);
|
ec_clr_bit(0x10 + (event >> 3), event & 7);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void h8_usb_always_on_enable(enum usb_always_on on)
|
void h8_usb_always_on_enable(enum usb_always_on on)
|
||||||
|
|
|
@ -25,7 +25,6 @@ void pmh7_dock_event_enable(int onoff)
|
||||||
pmh7_register_set_bit(0x60, 3);
|
pmh7_register_set_bit(0x60, 3);
|
||||||
else
|
else
|
||||||
pmh7_register_clear_bit(0x60, 3);
|
pmh7_register_clear_bit(0x60, 3);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void pmh7_touchpad_enable(int onoff)
|
void pmh7_touchpad_enable(int onoff)
|
||||||
|
|
Loading…
Reference in New Issue