From dede4e01ae4c877bb05d671087a6e85a29a0f902 Mon Sep 17 00:00:00 2001 From: Sam Hurst Date: Mon, 3 Aug 2020 13:06:42 -0700 Subject: ec: change usage of dummy Google is working to change its source code to use more inclusive language. To that end, replace the term "dummy" with inclusive alternatives. BUG=b:162781382 BRANCH=None TEST=make -j buildall `grep -ir dummy *` The only results are in "private/nordic_keyboard/sdk8.0.0" which is not our code. Signed-off-by: Sam Hurst Change-Id: I6a42183d998e4db4bb61625f962867fda10722e2 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2335737 Reviewed-by: Tom Hughes --- common/spi_nor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/spi_nor.c') diff --git a/common/spi_nor.c b/common/spi_nor.c index 98a9a01af8..4fda9f41e1 100644 --- a/common/spi_nor.c +++ b/common/spi_nor.c @@ -228,7 +228,7 @@ static int spi_nor_read_sfdp_dword( sfdp_cmd[1] = (sfdp_offset & 0xFF0000) >> 16; sfdp_cmd[2] = (sfdp_offset & 0xFF00) >> 8; sfdp_cmd[3] = (sfdp_offset & 0xFF); - sfdp_cmd[4] = 0; /* Required dummy cycle. */ + sfdp_cmd[4] = 0; /* Required extra cycle. */ return spi_transaction(&spi_devices[spi_nor_device->spi_master], sfdp_cmd, 5, (uint8_t *)out_dw, 4); } -- cgit v1.2.1