diff options
author | Vladimir Serbinenko <phcoder@gmail.com> | 2014-01-11 03:42:09 +0100 |
---|---|---|
committer | Vladimir Serbinenko <phcoder@gmail.com> | 2014-01-12 12:07:36 +0100 |
commit | e4ac9c043a9bb0a6601bbdca1a99a3811f7c94d8 (patch) | |
tree | 09c4da9262f2ae1487be5f785ac1a43327eda484 /src/ec/lenovo/h8/h8.c | |
parent | cd4774084469ab44f2f6c3f195537e618e965db4 (diff) | |
download | coreboot-e4ac9c043a9bb0a6601bbdca1a99a3811f7c94d8.tar.xz |
ec/lenovo/h8: Remove wlan_enable and wwan_enable from device tree.
wwan_enable was never used.
wlan_enable isn't something for device tree but for CMOS config if at all.
Change-Id: I765d9d6f0b73b7dc5a57c0c630a53b4b7a0b48cb
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: http://review.coreboot.org/4651
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/ec/lenovo/h8/h8.c')
-rw-r--r-- | src/ec/lenovo/h8/h8.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ec/lenovo/h8/h8.c b/src/ec/lenovo/h8/h8.c index 213ede352b..8dfec0614c 100644 --- a/src/ec/lenovo/h8/h8.c +++ b/src/ec/lenovo/h8/h8.c @@ -174,7 +174,7 @@ static void h8_enable(device_t dev) ec_write(0x1f, conf->eventf_enable); ec_write(H8_FAN_CONTROL, H8_FAN_CONTROL_AUTO); - h8_wlan_enable(conf->wlan_enable); + h8_wlan_enable(1); h8_trackpoint_enable(conf->trackpoint_enable); h8_usb_power_enable(1); |