]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
IB/qib: Additional Intel branding changes
authorVinit Agnihotri <vinit.abhay.agnihotri@intel.com>
Thu, 29 May 2014 19:46:09 +0000 (15:46 -0400)
committerRoland Dreier <roland@purestorage.com>
Fri, 30 May 2014 04:06:39 +0000 (21:06 -0700)
This patches changes user visible function names containing "qlogic"
in module init and cleanup.

Reviewed-by: Mike Marciniszyn <mike.marciniszyn@intel.com>
Signed-off-by: Vinit Agnihotri <vinit.abhay.agnihotri@intel.com>
Signed-off-by: Roland Dreier <roland@purestorage.com>
drivers/infiniband/hw/qib/qib_init.c

index 5b7aeb224a30ab54d56ba2566aaa8f3d4507de9d..8d3c78ddc906af620bd03cc812bcac95fb35cf94 100644 (file)
@@ -1272,7 +1272,7 @@ static int qib_notify_dca(struct notifier_block *nb, unsigned long event,
  * Do all the generic driver unit- and chip-independent memory
  * allocation and initialization.
  */
-static int __init qlogic_ib_init(void)
+static int __init qib_ib_init(void)
 {
        int ret;
 
@@ -1316,12 +1316,12 @@ static int __init qlogic_ib_init(void)
        return ret;
 }
 
-module_init(qlogic_ib_init);
+module_init(qib_ib_init);
 
 /*
  * Do the non-unit driver cleanup, memory free, etc. at unload.
  */
-static void __exit qlogic_ib_cleanup(void)
+static void __exit qib_ib_cleanup(void)
 {
        int ret;
 
@@ -1346,7 +1346,7 @@ static void __exit qlogic_ib_cleanup(void)
        qib_dev_cleanup();
 }
 
-module_exit(qlogic_ib_cleanup);
+module_exit(qib_ib_cleanup);
 
 /* this can only be called after a successful initialization */
 static void cleanup_device_data(struct qib_devdata *dd)