Do not log __DATE__ and __TIME__, this breaks the build

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
This commit is contained in:
Jean-Francois Moine
2016-03-18 12:00:24 +01:00
committed by Hans de Goede
parent 52ee638811
commit 406a1931d1

View File

@@ -68,7 +68,7 @@ u32 GlobalDebugLevel = _drv_err_;
void dump_drv_version(void *sel)
{
DBG_871X_SEL_NL(sel, "%s %s\n", DRV_NAME, DRIVERVERSION);
DBG_871X_SEL_NL(sel, "build time: %s %s\n", __DATE__, __TIME__);
// DBG_871X_SEL_NL(sel, "build time: %s %s\n", __DATE__, __TIME__);
}
void dump_drv_cfg(void *sel)