diff options
| author | wdenk <wdenk> | 2003-07-01 21:06:45 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2003-07-01 21:06:45 +0000 | 
| commit | 0d4983930a3559be92452761cfa268ee9d0f2773 (patch) | |
| tree | cfb77c1274a959cde007a7ac4e18b4b0d67bd253 /common/cmd_dcr.c | |
| parent | b37c7e5e5c3c80c68f49a31c4308b159bb5bda1a (diff) | |
| download | olio-uboot-2014.01-0d4983930a3559be92452761cfa268ee9d0f2773.tar.xz olio-uboot-2014.01-0d4983930a3559be92452761cfa268ee9d0f2773.zip | |
Patch by Kenneth Johansson, 30 Jun 2003:
get rid of MK_CMD_ENTRY macro; update doc/README.command
Diffstat (limited to 'common/cmd_dcr.c')
| -rw-r--r-- | common/cmd_dcr.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/common/cmd_dcr.c b/common/cmd_dcr.c index 3ec11b044..a91db66e0 100644 --- a/common/cmd_dcr.c +++ b/common/cmd_dcr.c @@ -106,13 +106,13 @@ int do_setdcr ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  /***************************************************/ -cmd_tbl_t U_BOOT_CMD(GETDCR) = MK_CMD_ENTRY( -	"getdcr",	2,	1,	do_getdcr, +U_BOOT_CMD( +	getdcr,	2,	1,	do_getdcr,  	"getdcr  - Get an IBM PPC 4xx DCR's value\n",  	"dcrn - return a DCR's value.\n"  ); -cmd_tbl_t U_BOOT_CMD(SETDCR) = MK_CMD_ENTRY( -	"setdcr",	2,	1,	do_setdcr, +U_BOOT_CMD( +	setdcr,	2,	1,	do_setdcr,  	"setdcr  - Set an IBM PPC 4xx DCR's value\n",  	"dcrn - set a DCR's value.\n"  ); |