From mboxrd@z Thu Jan 1 00:00:00 1970 From: Masahiro Yamada Date: Thu, 17 Apr 2014 17:00:31 +0900 Subject: [U-Boot] [PATCH 4/5] fs: ubifs: drop __DATE__ and __TIME__ In-Reply-To: <1397721632-18797-1-git-send-email-yamada.m@jp.panasonic.com> References: <1397721632-18797-1-git-send-email-yamada.m@jp.panasonic.com> Message-ID: <1397721632-18797-5-git-send-email-yamada.m@jp.panasonic.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de __DATE__ and __TIME__ should not be used anymore. Drop the debug message using them. Signed-off-by: Masahiro Yamada --- fs/ubifs/super.c | 1 - 1 file changed, 1 deletion(-) diff --git a/fs/ubifs/super.c b/fs/ubifs/super.c index 67f115f..748ab67 100644 --- a/fs/ubifs/super.c +++ b/fs/ubifs/super.c @@ -734,7 +734,6 @@ static int mount_ubifs(struct ubifs_info *c) ubifs_msg("reserved for root: %llu bytes (%llu KiB)", c->report_rp_size, c->report_rp_size >> 10); - dbg_msg("compiled on: " __DATE__ " at " __TIME__); dbg_msg("min. I/O unit size: %d bytes", c->min_io_size); dbg_msg("LEB size: %d bytes (%d KiB)", c->leb_size, c->leb_size >> 10); -- 1.8.3.2