tools: edimax_fw_header: fix suspicious memset usage
[15.05/openwrt.git] / target / linux / adm5120 / files / drivers / usb / host / adm5120-mem.c
index 3e4b2d9..79fff70 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * ADM5120 HCD (Host Controller Driver) for USB
  *
- * Copyright (C) 2007,2008 Gabor Juhos <juhosg at openwrt.org>
+ * Copyright (C) 2007-2008 Gabor Juhos <juhosg@openwrt.org>
  *
  * This file was derived from: drivers/usb/host/ohci-mem.c
  *   (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
@@ -125,10 +125,10 @@ static void td_free(struct admhcd *ahcd, struct td *td)
 #if 0
        /* TODO: remove */
        else if ((td->hwINFO & cpu_to_hc32(ahcd, TD_DONE)) != 0)
-               admhc_dbg (ahcd, "no hash for td %p\n", td);
+               admhc_dbg(ahcd, "no hash for td %p\n", td);
 #else
        else if ((td->flags & TD_FLAG_DONE) != 0)
-               admhc_dbg (ahcd, "no hash for td %p\n", td);
+               admhc_dbg(ahcd, "no hash for td %p\n", td);
 #endif
        dma_pool_free(ahcd->td_cache, td, td->td_dma);
 }