summaryrefslogtreecommitdiff
path: root/include/console_channel.inc
diff options
context:
space:
mode:
authorNicolas Boichat <drinkcat@chromium.org>2018-05-23 13:54:06 +0800
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2018-06-01 06:22:05 +0000
commit29db6c1226288ea3eca333503a0d4a70c2729388 (patch)
tree2c9e1dd2fad77adf163087101602927f1e505c5f /include/console_channel.inc
parent795c889d419e555803f6cd215c07bd208e250753 (diff)
downloadchrome-ec-29db6c1226288ea3eca333503a0d4a70c2729388.tar.gz
console_channel.inc: Add more ifdef to reduce number of channels
There are still more ifdef than can be added: this just takes out the low hanging fruits. BRANCH=poppy BUG=b:35647963 TEST=make buildall -j, see that we gain from 0 to 64 bytes on many boards. Conflicts: board/nocturne/board.c => Does not exist on FW branch Change-Id: Ibe85b8bfa5d5c22c160e4a6656104256067beee9 Signed-off-by: Nicolas Boichat <drinkcat@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/1070948 Reviewed-by: Vincent Palatin <vpalatin@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/1080582
Diffstat (limited to 'include/console_channel.inc')
-rw-r--r--include/console_channel.inc10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/console_channel.inc b/include/console_channel.inc
index b8412cf335..113c8ca11d 100644
--- a/include/console_channel.inc
+++ b/include/console_channel.inc
@@ -23,12 +23,16 @@ CONSOLE_CHANNEL(CC_EXTENSION, "extension")
CONSOLE_CHANNEL(CC_CCD, "ccd")
#endif
CONSOLE_CHANNEL(CC_CHARGER, "charger")
+#ifdef HAS_TASK_CHIPSET
CONSOLE_CHANNEL(CC_CHIPSET, "chipset")
+#endif
CONSOLE_CHANNEL(CC_CLOCK, "clock")
#ifdef CONFIG_DMA
CONSOLE_CHANNEL(CC_DMA, "dma")
#endif
+#if defined(CONFIG_DEVICE_EVENT) || defined(CONFIG_HOSTCMD_EVENTS)
CONSOLE_CHANNEL(CC_EVENTS, "events")
+#endif
#ifdef HAS_TASK_FPSENSOR
CONSOLE_CHANNEL(CC_FP, "fingerprint")
#endif
@@ -43,8 +47,12 @@ CONSOLE_CHANNEL(CC_HOSTCMD, "hostcmd")
CONSOLE_CHANNEL(CC_I2C, "i2c")
#endif
CONSOLE_CHANNEL(CC_KEYBOARD, "keyboard")
+#ifdef HAS_TASK_KEYSCAN
CONSOLE_CHANNEL(CC_KEYSCAN, "keyscan")
+#endif
+#ifdef CONFIG_LID_ANGLE_UPDATE
CONSOLE_CHANNEL(CC_LIDANGLE, "lidangle")
+#endif
#ifdef HAS_TASK_LIGHTBAR
CONSOLE_CHANNEL(CC_LIGHTBAR, "lightbar")
#endif
@@ -82,7 +90,9 @@ CONSOLE_CHANNEL(CC_DPTF, "dptf")
CONSOLE_CHANNEL(CC_ALS, "als")
#endif
CONSOLE_CHANNEL(CC_THERMAL, "thermal")
+#ifdef CHIP_G
CONSOLE_CHANNEL(CC_TPM, "tpm")
+#endif
CONSOLE_CHANNEL(CC_USB, "usb")
CONSOLE_CHANNEL(CC_USBCHARGE, "usbcharge")
#if defined(CONFIG_USB_POWER_DELIVERY) || defined(CONFIG_USB_PD_TCPC)