Felix Held submitted this change.

View Change

Approvals: build bot (Jenkins): Verified Felix Held: Looks good to me, approved
ec/dell/mec5035: Hook up radio enables to option API

Change-Id: Ibfa17ca83ca178c942d9c41533152235384e0cdf
Signed-off-by: Nicholas Chin <nic.c3.14@gmail.com>
Original-Change-Id: I52de5ea3d24b400a93adee7a6207a4439eac61db
Original-Reviewed-on: https://review.coreboot.org/c/coreboot/+/77535
Reviewed-on: https://review.coreboot.org/c/coreboot/+/79011
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
---
M src/ec/dell/mec5035/mec5035.c
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/src/ec/dell/mec5035/mec5035.c b/src/ec/dell/mec5035/mec5035.c
index 41b8dca..eec79fb 100644
--- a/src/ec/dell/mec5035/mec5035.c
+++ b/src/ec/dell/mec5035/mec5035.c
@@ -4,6 +4,7 @@
#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"
@@ -108,6 +109,10 @@
mec5035_mouse_touchpad(TP_PS2_MOUSE);

pc_keyboard_init(NO_AUX_DEVICE);
+
+ mec5035_control_radio(RADIO_WLAN, get_uint_option("wlan", RADIO_ON));
+ mec5035_control_radio(RADIO_WWAN, get_uint_option("wwan", RADIO_ON));
+ mec5035_control_radio(RADIO_BT, get_uint_option("bluetooth", RADIO_ON));
}

static struct device_operations ops = {

To view, visit change 79011. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: Ibfa17ca83ca178c942d9c41533152235384e0cdf
Gerrit-Change-Number: 79011
Gerrit-PatchSet: 5
Gerrit-Owner: Nicholas Chin <nic.c3.14@gmail.com>
Gerrit-Reviewer: Felix Held <felix-coreboot@felixheld.de>
Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org>
Gerrit-MessageType: merged