From 2cd3a64073d504e8d4edf0370cf99b25a3ef1016 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Fri, 11 Sep 2015 16:33:12 +0000 Subject: yaffs2: remove __TIME__ __DATE__ macros prevent compiler errors with gcc 4.9 increase reproducibility Signed-off-by: Dirk Neukirchen git-svn-id: svn://svn.openwrt.org/openwrt/trunk@46858 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- target/linux/generic/files/fs/yaffs2/yaffs_vfs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'target/linux/generic/files') diff --git a/target/linux/generic/files/fs/yaffs2/yaffs_vfs.c b/target/linux/generic/files/fs/yaffs2/yaffs_vfs.c index 6540434371..864a5dc185 100644 --- a/target/linux/generic/files/fs/yaffs2/yaffs_vfs.c +++ b/target/linux/generic/files/fs/yaffs2/yaffs_vfs.c @@ -3250,7 +3250,7 @@ static int yaffs_proc_read(char *page, if (step == 0) buf += sprintf(buf, - "Multi-version YAFFS built:" __DATE__ " " __TIME__ + "Multi-version YAFFS." "\n"); else if (step == 1) buf += sprintf(buf, "\n"); @@ -3601,7 +3601,7 @@ static int __init init_yaffs_fs(void) struct file_system_to_install *fsinst; yaffs_trace(YAFFS_TRACE_ALWAYS, - "yaffs built " __DATE__ " " __TIME__ " Installing."); + "yaffs Installing."); mutex_init(&yaffs_context_lock); @@ -3642,7 +3642,7 @@ static void __exit exit_yaffs_fs(void) struct file_system_to_install *fsinst; yaffs_trace(YAFFS_TRACE_ALWAYS, - "yaffs built " __DATE__ " " __TIME__ " removing."); + "yaffs removing."); remove_proc_entry("yaffs", YPROC_ROOT); -- cgit v1.2.3