Hello Thejaswani Putta,
I'd like you to do a code review. Please visit
https://review.coreboot.org/c/coreboot/+/35509
to review the following change.
Change subject: mb/google/drallion: Disable GBE in firmware for drallion variants
......................................................................
mb/google/drallion: Disable GBE in firmware for drallion variants
BUG: None
TEST: Build and boot, check if 1f.6 is off on drallion variants
Signed-off-by: Thejaswani Putta <thejaswani.putta(a)intel.corp-partner.google.com>
Change-Id: I4e74b259ce8f5f70833dce94692dcbe33e8504db
---
M src/mainboard/google/drallion/variants/sarien_cml/devicetree.cb
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/09/35509/1
diff --git a/src/mainboard/google/drallion/variants/sarien_cml/devicetree.cb b/src/mainboard/google/drallion/variants/sarien_cml/devicetree.cb
index f2367ff..8cb1aa3 100644
--- a/src/mainboard/google/drallion/variants/sarien_cml/devicetree.cb
+++ b/src/mainboard/google/drallion/variants/sarien_cml/devicetree.cb
@@ -417,6 +417,6 @@
device pci 1f.3 on end # Intel HDA
device pci 1f.4 on end # SMBus
device pci 1f.5 on end # PCH SPI
- device pci 1f.6 on end # GbE
+ device pci 1f.6 off end # GbE
end
end
--
To view, visit https://review.coreboot.org/c/coreboot/+/35509
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I4e74b259ce8f5f70833dce94692dcbe33e8504db
Gerrit-Change-Number: 35509
Gerrit-PatchSet: 1
Gerrit-Owner: Thejaswani Putta <thejaswani.putta(a)intel.com>
Gerrit-Reviewer: Thejaswani Putta <thejaswani.putta(a)intel.corp-partner.google.com>
Gerrit-MessageType: newchange
Name of user not set #1002476 has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/35538 )
Change subject: coreinfo/coreinfo.c: Support both lower and upper case alphabets
......................................................................
coreinfo/coreinfo.c: Support both lower and upper case alphabets
Modify handle_category_key to handle both upper and lower case alphabets
in the coreinfo payload.
Change-Id: I3ccbf69e90ba7824ad6ec85d2ca59aa8f40b3006
Signed-off-by: Himanshu Sahdev <himanshusah(a)hcl.com>
---
M payloads/coreinfo/coreinfo.c
1 file changed, 3 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/38/35538/1
diff --git a/payloads/coreinfo/coreinfo.c b/payloads/coreinfo/coreinfo.c
index b731abf..e6b7f2e 100644
--- a/payloads/coreinfo/coreinfo.c
+++ b/payloads/coreinfo/coreinfo.c
@@ -198,7 +198,9 @@
static void handle_category_key(struct coreinfo_cat *cat, int key)
{
- if (key >= 'a' && key <= 'z') {
+ if ((key >= 'a' && key <= 'z') || (key >= 'A' && key <= 'Z')) {
+ if (key >= 'A' && key <= 'Z')
+ key = key + 32;
int index = key - 'a';
if (index < cat->count) {
cat->cur = index;
--
To view, visit https://review.coreboot.org/c/coreboot/+/35538
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I3ccbf69e90ba7824ad6ec85d2ca59aa8f40b3006
Gerrit-Change-Number: 35538
Gerrit-PatchSet: 1
Gerrit-Owner: Name of user not set #1002476
Gerrit-MessageType: newchange