From ae3916293c6b44feb4b24c4e9dd38e941c5b3e9c Mon Sep 17 00:00:00 2001 From: adlerre Date: Fri, 25 Apr 2014 14:30:02 +0200 Subject: [PATCH] fix compile on enabeld data-time check --- ...a-011-fix-compile-on-date-time-check.patch | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 packages/linux-drivers/bcm_sta/patches/6.20.155.1/bcm_sta-011-fix-compile-on-date-time-check.patch diff --git a/packages/linux-drivers/bcm_sta/patches/6.20.155.1/bcm_sta-011-fix-compile-on-date-time-check.patch b/packages/linux-drivers/bcm_sta/patches/6.20.155.1/bcm_sta-011-fix-compile-on-date-time-check.patch new file mode 100644 index 0000000000..875a2c5e7c --- /dev/null +++ b/packages/linux-drivers/bcm_sta/patches/6.20.155.1/bcm_sta-011-fix-compile-on-date-time-check.patch @@ -0,0 +1,27 @@ +--- a/x86-32/src/wl/sys/wl_linux.c ++++ b/x86-32/src/wl/sys/wl_linux.c +@@ -1773,8 +1773,8 @@ + void + wl_dump_ver(wl_info_t *wl, struct bcmstrbuf *b) + { +- bcm_bprintf(b, "wl%d: %s %s version %s\n", wl->pub->unit, +- __DATE__, __TIME__, EPI_VERSION_STR); ++ bcm_bprintf(b, "wl%d: version %s\n", wl->pub->unit, ++ EPI_VERSION_STR); + } + + #if defined(BCMDBG) + +--- a/x86-64/src/wl/sys/wl_linux.c ++++b/x86-64/src/wl/sys/wl_linux.c +@@ -1773,8 +1773,8 @@ + void + wl_dump_ver(wl_info_t *wl, struct bcmstrbuf *b) + { +- bcm_bprintf(b, "wl%d: %s %s version %s\n", wl->pub->unit, +- __DATE__, __TIME__, EPI_VERSION_STR); ++ bcm_bprintf(b, "wl%d: version %s\n", wl->pub->unit, ++ EPI_VERSION_STR); + } + + #if defined(BCMDBG)