diff options
author | Matt DeVillier <matt.devillier@gmail.com> | 2023-10-20 17:10:45 +0000 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2023-10-20 17:11:45 +0000 |
commit | 8ea8940e39c5eb989c112c82446c2ba4b7010492 (patch) | |
tree | b18f6fde0338a5c7c58e6180868d13868b5fd96d /src | |
parent | bb5fa6419dfd71950e61e75eecd48ef8203bb1b1 (diff) |
Revert "ec/dell/mec5035: Hook up radio enables to option API"
This reverts commit bb5fa6419dfd71950e61e75eecd48ef8203bb1b1.
Reason for revert: accidentally committed out of order; reverting to
unbreak tree
Change-Id: I36aa1fd3a0befe49b7e9e34198676f16fb08cf73
Signed-off-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/78524
Reviewed-by: Martin L Roth <gaumless@gmail.com>
Tested-by: Martin L Roth <gaumless@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/ec/dell/mec5035/mec5035.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/ec/dell/mec5035/mec5035.c b/src/ec/dell/mec5035/mec5035.c index fad27b18f1..8da11e5b1c 100644 --- a/src/ec/dell/mec5035/mec5035.c +++ b/src/ec/dell/mec5035/mec5035.c @@ -4,7 +4,6 @@ #include <console/console.h> #include <device/device.h> #include <device/pnp.h> -#include <option.h> #include <pc80/keyboard.h> #include <stdint.h> #include "mec5035.h" @@ -100,10 +99,6 @@ static void mec5035_init(struct device *dev) mec5035_mouse_touchpad(TP_PS2_MOUSE); pc_keyboard_init(NO_AUX_DEVICE); - - mec5035_radio_enable(RADIO_WLAN, get_uint_option("wlan", 1)); - mec5035_radio_enable(RADIO_WWAN, get_uint_option("wwan", 1)); - mec5035_radio_enable(RADIO_WPAN, get_uint_option("bluetooth", 1)); } static struct device_operations ops = { |