914-eliminate-date-time-error.patch 612 B

123456789101112131415161718192021
  1. --- a/driver/wl_linux.c
  2. +++ b/driver/wl_linux.c
  3. @@ -762,7 +762,7 @@ wl_attach(uint16 vendor, uint16 device,
  4. dev->name, device);
  5. #ifdef BCMDBG
  6. - printf(" (Compiled in " SRCBASE " at " __TIME__ " on " __DATE__ ")");
  7. + printf(" (Compiled in " SRCBASE ")");
  8. #endif /* BCMDBG */
  9. printf("\n");
  10. @@ -2298,8 +2298,7 @@ wl_sendup(wl_info_t *wl, wl_if_t *wlif,
  11. void
  12. wl_dump_ver(wl_info_t *wl, struct bcmstrbuf *b)
  13. {
  14. - bcm_bprintf(b, "wl%d: %s %s version %s\n", wl->pub->unit,
  15. - __DATE__, __TIME__, EPI_VERSION_STR);
  16. + bcm_bprintf(b, "wl%d: version %s\n", wl->pub->unit, EPI_VERSION_STR);
  17. }
  18. #ifdef BCMDBG