diff options
author | Paul Fagerburg <pfagerburg@google.com> | 2020-07-21 13:12:02 -0600 |
---|---|---|
committer | Commit Bot <commit-bot@chromium.org> | 2020-07-22 22:49:46 +0000 |
commit | 514923bc59f5a3435dbb7cbf348735ed41889ffe (patch) | |
tree | 15efb9db43b84f903e1915a78162e020808fec09 /board/garg | |
parent | b93f139e47f8ced7ebe2414737296f9a6ba49cbc (diff) | |
download | chrome-ec-514923bc59f5a3435dbb7cbf348735ed41889ffe.tar.gz |
ec: change usage of "sane" per inclusive language
Google is working to change its source code to use more inclusive
language. To that end, replace the terms "sane", "sanity check", and
similar with inclusive/non-stigmatizing alternatives.
BUG=b:161832469
BRANCH=None
TEST=`make buildall -j` succeeds. `grep -Eir "sane|sanity" .` shows
results only in third-party code or documentation.
Signed-off-by: Paul Fagerburg <pfagerburg@chromium.org>
Change-Id: I29e78ab27f84f17b1ded75cfa10868fa4e5ae88c
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2311169
Reviewed-by: Jett Rink <jettrink@chromium.org>
Diffstat (limited to 'board/garg')
-rw-r--r-- | board/garg/board.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/garg/board.c b/board/garg/board.c index 937e8c2d31..44cc3b3759 100644 --- a/board/garg/board.c +++ b/board/garg/board.c @@ -288,7 +288,7 @@ void lid_angle_peripheral_enable(int enable) void board_overcurrent_event(int port, int is_overcurrented) { - /* Sanity check the port. */ + /* Check that port number is valid. */ if ((port < 0) || (port >= CONFIG_USB_PD_PORT_MAX_COUNT)) return; |