diff options
author | Roland Dreier <rolandd@cisco.com> | 2006-03-29 09:36:46 -0800 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2006-03-29 09:36:46 -0800 |
commit | e1f7868c80947d40ef8e1fd37323d939a9bf311c (patch) | |
tree | 04ee4d31a49e563bbdca385b8d558d7fee2f0d47 /drivers/infiniband/hw/mthca/mthca_pd.c | |
parent | ef12d4561900d4af37f46a8f2d97dec3c4d59bf9 (diff) | |
download | blackbird-obmc-linux-e1f7868c80947d40ef8e1fd37323d939a9bf311c.tar.gz blackbird-obmc-linux-e1f7868c80947d40ef8e1fd37323d939a9bf311c.zip |
IB/mthca: Fix section mismatch problems
Quite a few cleanup functions in mthca were marked as __devexit.
However, they could also be called from error paths during
initialization, so they cannot be marked that way. Just delete all of
the incorrect annotations.
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband/hw/mthca/mthca_pd.c')
-rw-r--r-- | drivers/infiniband/hw/mthca/mthca_pd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/mthca/mthca_pd.c b/drivers/infiniband/hw/mthca/mthca_pd.c index 105fc5faaddf..59df51614c85 100644 --- a/drivers/infiniband/hw/mthca/mthca_pd.c +++ b/drivers/infiniband/hw/mthca/mthca_pd.c @@ -77,7 +77,7 @@ int __devinit mthca_init_pd_table(struct mthca_dev *dev) dev->limits.reserved_pds); } -void __devexit mthca_cleanup_pd_table(struct mthca_dev *dev) +void mthca_cleanup_pd_table(struct mthca_dev *dev) { /* XXX check if any PDs are still allocated? */ mthca_alloc_cleanup(&dev->pd_table.alloc); |