]> cloudbase.mooo.com Git - z180-stamp.git/blobdiff - avr/cmd_date.c
rewrite of cmd_cpu/do_cpu_freq
[z180-stamp.git] / avr / cmd_date.c
index 3e2e01680513df316623da108b4112761cf67a29..0bd3ebb517cc1fe3ba375df6335efe23e73c3ac5 100644 (file)
@@ -4,17 +4,15 @@
  * (C) Copyright 2001
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  *
- * SPDX-License-Identifier:    GPL-2.0+
+ * SPDX-License-Identifier:    GPL-2.0
  */
 
 /*
  * RTC, Date & Time support: get and set date & time
  */
-#include "common.h"
-#include <string.h>
+#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, int 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 */