diff options
author | Vinit Agnihotri <vinit.abhay.agnihotri@intel.com> | 2014-05-29 15:46:09 -0400 |
---|---|---|
committer | Roland Dreier <roland@purestorage.com> | 2014-05-30 00:06:39 -0400 |
commit | 0a66d2bd300cbdaa3146c81cb823d01593963066 (patch) | |
tree | a81d1dd1f725a01a64635c0c4770240f8ea490c7 | |
parent | 49410185c356b2767409de9220d5cf5c8db062e5 (diff) |
IB/qib: Additional Intel branding changes
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>
-rw-r--r-- | drivers/infiniband/hw/qib/qib_init.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/infiniband/hw/qib/qib_init.c b/drivers/infiniband/hw/qib/qib_init.c index 5b7aeb224a30..8d3c78ddc906 100644 --- a/drivers/infiniband/hw/qib/qib_init.c +++ b/drivers/infiniband/hw/qib/qib_init.c | |||
@@ -1272,7 +1272,7 @@ static int qib_notify_dca(struct notifier_block *nb, unsigned long event, | |||
1272 | * Do all the generic driver unit- and chip-independent memory | 1272 | * Do all the generic driver unit- and chip-independent memory |
1273 | * allocation and initialization. | 1273 | * allocation and initialization. |
1274 | */ | 1274 | */ |
1275 | static int __init qlogic_ib_init(void) | 1275 | static int __init qib_ib_init(void) |
1276 | { | 1276 | { |
1277 | int ret; | 1277 | int ret; |
1278 | 1278 | ||
@@ -1316,12 +1316,12 @@ bail: | |||
1316 | return ret; | 1316 | return ret; |
1317 | } | 1317 | } |
1318 | 1318 | ||
1319 | module_init(qlogic_ib_init); | 1319 | module_init(qib_ib_init); |
1320 | 1320 | ||
1321 | /* | 1321 | /* |
1322 | * Do the non-unit driver cleanup, memory free, etc. at unload. | 1322 | * Do the non-unit driver cleanup, memory free, etc. at unload. |
1323 | */ | 1323 | */ |
1324 | static void __exit qlogic_ib_cleanup(void) | 1324 | static void __exit qib_ib_cleanup(void) |
1325 | { | 1325 | { |
1326 | int ret; | 1326 | int ret; |
1327 | 1327 | ||
@@ -1346,7 +1346,7 @@ static void __exit qlogic_ib_cleanup(void) | |||
1346 | qib_dev_cleanup(); | 1346 | qib_dev_cleanup(); |
1347 | } | 1347 | } |
1348 | 1348 | ||
1349 | module_exit(qlogic_ib_cleanup); | 1349 | module_exit(qib_ib_cleanup); |
1350 | 1350 | ||
1351 | /* this can only be called after a successful initialization */ | 1351 | /* this can only be called after a successful initialization */ |
1352 | static void cleanup_device_data(struct qib_devdata *dd) | 1352 | static void cleanup_device_data(struct qib_devdata *dd) |