X-Git-Url: http://cloudbase.mooo.com/gitweb/z180-stamp.git/blobdiff_plain/fcf1d5b30bd3b341fb7596aef395f347c6dc97b4..aea51b6c4c93c56715f50e64d424e1181c6d0242:/avr/cmd_date.c diff --git a/avr/cmd_date.c b/avr/cmd_date.c index 91a3d44..0bd3ebb 100644 --- a/avr/cmd_date.c +++ b/avr/cmd_date.c @@ -10,11 +10,9 @@ /* * RTC, Date & Time support: get and set date & time */ -#include "common.h" -#include +#include "cmd_date.h" #include "time.h" #include "rtc.h" -#include "command.h" /* @@ -125,15 +123,13 @@ int mk_date (const char *datestr, struct tm *tmp) return (-1); } -command_ret_t do_date(cmd_tbl_t *cmdtp, uint_fast8_t flag, int argc, char * const argv[]) +command_ret_t do_date(cmd_tbl_t *cmdtp UNUSED, uint_fast8_t flag UNUSED, int argc, char * const argv[]) { struct tm t; char buf[30]; int rc; command_ret_t rcode = CMD_RET_FAILURE; - (void) cmdtp; (void) flag; - switch (argc) { case 2: /* set date & time */ /* initialize t with current time */