summaryrefslogtreecommitdiff
path: root/util/build.mk
diff options
context:
space:
mode:
authorShawn Nematbakhsh <shawnn@chromium.org>2015-04-09 11:44:35 -0700
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2015-04-10 18:48:39 +0000
commit2e19bcb0cfd989f80ce100ce35ba4bfd7822fc94 (patch)
tree5f233f4096b152ad6627de1c2b51e66b450a86f8 /util/build.mk
parent0b20fa1e0d159846d8c9febf7e38c28a44adff9f (diff)
downloadchrome-ec-2e19bcb0cfd989f80ce100ce35ba4bfd7822fc94.tar.gz
util: Remove mec1322 comm driver
The mec1322 LPC / EMI comm driver is no longer functional due to recent EC changes. Rather than re-implementing a working driver across user space tools, the plan of action is to use the kernel device driver (through comm-dev) for all access. BUG=chrome-os-partner:38103 TEST=Manual on glower with pending kernel cros_ec_lpc changes. Verify "ectool version" and "ectool gpioget" succeed. BRANCH=None Change-Id: I770cb06ca534a7c31794e6b37c226e952361ee32 Signed-off-by: Shawn Nematbakhsh <shawnn@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/265031 Reviewed-by: Randall Spangler <rspangler@chromium.org>
Diffstat (limited to 'util/build.mk')
-rw-r--r--util/build.mk4
1 files changed, 0 insertions, 4 deletions
diff --git a/util/build.mk b/util/build.mk
index 58410941a3..20377a46b6 100644
--- a/util/build.mk
+++ b/util/build.mk
@@ -11,12 +11,8 @@ build-util-bin=ec_uartd iteflash
comm-objs=$(util-lock-objs:%=lock/%) comm-host.o comm-dev.o
ifneq ($(HOSTCC),mipsel-cros-linux-gnu-gcc)
-ifeq ($(CHIP),mec1322)
-comm-objs+=comm-mec1322.o
-else
comm-objs+=comm-lpc.o
endif
-endif
comm-objs+=comm-i2c.o
ectool-objs=ectool.o ectool_keyscan.o misc_util.o ec_flash.o $(comm-objs)