aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/hw/mthca/mthca_memfree.h
diff options
context:
space:
mode:
authorRoland Dreier <rolandd@cisco.com>2005-10-18 13:22:16 -0700
committerRoland Dreier <rolandd@cisco.com>2005-10-18 13:22:16 -0700
commitc6f5cb7be0ab478e0618e3c2c6ada27f56d1e7fb (patch)
tree37446873b146ad0e8a4d3c5c6378e4400e797544 /drivers/infiniband/hw/mthca/mthca_memfree.h
parent[IPoIB] Improve ipoib_timeout() output (diff)
downloadlinux-dev-c6f5cb7be0ab478e0618e3c2c6ada27f56d1e7fb.tar.xz
linux-dev-c6f5cb7be0ab478e0618e3c2c6ada27f56d1e7fb.zip
[IB] mthca: Use enum in mthca_alloc_db() prototype
Make the type parameter of mthca_alloc_db() be an enum mthca_db_type instead of an int. This doesn't have any practical effect but documents the functions a little better. Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband/hw/mthca/mthca_memfree.h')
-rw-r--r--drivers/infiniband/hw/mthca/mthca_memfree.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/mthca/mthca_memfree.h b/drivers/infiniband/hw/mthca/mthca_memfree.h
index bafa51544aa3..29c01a4b2656 100644
--- a/drivers/infiniband/hw/mthca/mthca_memfree.h
+++ b/drivers/infiniband/hw/mthca/mthca_memfree.h
@@ -173,7 +173,8 @@ void mthca_cleanup_user_db_tab(struct mthca_dev *dev, struct mthca_uar *uar,
int mthca_init_db_tab(struct mthca_dev *dev);
void mthca_cleanup_db_tab(struct mthca_dev *dev);
-int mthca_alloc_db(struct mthca_dev *dev, int type, u32 qn, __be32 **db);
+int mthca_alloc_db(struct mthca_dev *dev, enum mthca_db_type type,
+ u32 qn, __be32 **db);
void mthca_free_db(struct mthca_dev *dev, int type, int db_index);
#endif /* MTHCA_MEMFREE_H */