diff options
author | Simon Glass | 2017-08-04 16:34:38 -0600 |
---|---|---|
committer | Tom Rini | 2017-08-11 15:41:52 -0400 |
commit | 6f62d7c4f7a2242a76e19b09dccca6f68776e788 (patch) | |
tree | b333194c8e26d76bf350f3ca5dcbca67b050902e /include/command.h | |
parent | 7f6665554a6e42af3c9f704de879705c1b20b56c (diff) |
Kconfig: Drop CONFIG_CMD_PORTIO and associated command
This command is not used by any board. It also looks quite similar to the
'iod' and 'iow' commands which use the correct I/O macros.
Drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Diffstat (limited to 'include/command.h')
-rw-r--r-- | include/command.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/include/command.h b/include/command.h index 08f04867ddf..767cabb3df0 100644 --- a/include/command.h +++ b/include/command.h @@ -80,11 +80,10 @@ int cmd_process_error(cmd_tbl_t *cmdtp, int err); * void function (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); */ -#if defined(CONFIG_CMD_MEMORY) \ - || defined(CONFIG_CMD_I2C) \ - || defined(CONFIG_CMD_ITEST) \ - || defined(CONFIG_CMD_PCI) \ - || defined(CONFIG_CMD_PORTIO) +#if defined(CONFIG_CMD_MEMORY) || \ + defined(CONFIG_CMD_I2C) || \ + defined(CONFIG_CMD_ITEST) || \ + defined(CONFIG_CMD_PCI) #define CMD_DATA_SIZE extern int cmd_get_data_size(char* arg, int default_size); #endif |