Patrick Rudolph has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/32836
Change subject: qualcomm/common/qclib: Use CONFIG() ......................................................................
qualcomm/common/qclib: Use CONFIG()
Use CONFIG() instead of IS_ENABLED().
Change-Id: I9bd78726fcdcc9f477d7c230fc2cd2c3c3f80f6f Signed-off-by: Patrick Rudolph siro@das-labor.org --- M src/soc/qualcomm/common/qclib.c 1 file changed, 3 insertions(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/36/32836/1
diff --git a/src/soc/qualcomm/common/qclib.c b/src/soc/qualcomm/common/qclib.c index 1fd79b5..73c5250 100644 --- a/src/soc/qualcomm/common/qclib.c +++ b/src/soc/qualcomm/common/qclib.c @@ -129,7 +129,7 @@ memset(ddr_region, 0, sizeof(struct region));
/* output area, QCLib copies console log buffer out */ - if (IS_ENABLED(CONFIG_CONSOLE_CBMEM)) + if (CONFIG(CONSOLE_CBMEM)) qclib_add_if_table_entry(QCLIB_TE_QCLIB_LOG_BUFFER, _qclib_serial_log, REGION_SIZE(qclib_serial_log), 0); @@ -152,11 +152,11 @@ }
/* Enable QCLib serial output, based on Kconfig */ - if (IS_ENABLED(CONFIG_CONSOLE_SERIAL)) + if (CONFIG(CONSOLE_SERIAL)) qclib_cb_if_table.global_attributes = QCLIB_GA_ENABLE_UART_LOGGING;
- if (IS_ENABLED(CONFIG_QC_SDI_ENABLE)) { + if (CONFIG(QC_SDI_ENABLE)) { struct prog qcsdi = PROG_INIT(PROG_REFCODE, CONFIG_CBFS_PREFIX "/qcsdi");
Hello mturney mturney, Julius Werner, SANTHOSH JANARDHANA HASSAN, Martin Roth, Patrick Georgi, Nitheesh Sekar,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/32836
to look at the new patch set (#2).
Change subject: qualcomm/common/qclib: Use CONFIG() ......................................................................
qualcomm/common/qclib: Use CONFIG()
Use CONFIG() instead of IS_ENABLED().
Change-Id: I9bd78726fcdcc9f477d7c230fc2cd2c3c3f80f6f Signed-off-by: Patrick Rudolph siro@das-labor.org --- M src/soc/qualcomm/common/qclib.c 1 file changed, 3 insertions(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/36/32836/2
Patrick Georgi has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/32836 )
Change subject: qualcomm/common/qclib: Use CONFIG() ......................................................................
Patch Set 2:
See CB:32813
Nico Huber has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/32836 )
Change subject: qualcomm/common/qclib: Use CONFIG() ......................................................................
Patch Set 2:
Here is nothing to review, the changes are already merged.
Patrick Rudolph has abandoned this change. ( https://review.coreboot.org/c/coreboot/+/32836 )
Change subject: qualcomm/common/qclib: Use CONFIG() ......................................................................
Abandoned