Skip to content

Commit

Permalink
IB/ocrdma: Add identifier names to function definitions
Browse files Browse the repository at this point in the history
Address a checkpatch issue on missing identifier names
on function definitions.

Reviewed-by: Ira Weiny <ira.weiny@intel.com>
Reviewed-by: Don Hiatt <don.hiatt@intel.com>
Reviewed-by: Sean Hefty <sean.hefty@intel.com>
Signed-off-by: Dasaratharaman Chandramouli <dasaratharaman.chandramouli@intel.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
  • Loading branch information
Dasaratharaman Chandramouli authored and Doug Ledford committed May 1, 2017
1 parent 2196f27 commit bef4211
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/infiniband/hw/ocrdma/ocrdma_ah.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ enum {
OCRDMA_AH_L3_TYPE_SHIFT = 0x1D /* 29 bits */
};

struct ib_ah *ocrdma_create_ah(struct ib_pd *, struct ib_ah_attr *,
struct ib_udata *);
int ocrdma_destroy_ah(struct ib_ah *);
int ocrdma_query_ah(struct ib_ah *, struct ib_ah_attr *);
int ocrdma_modify_ah(struct ib_ah *, struct ib_ah_attr *);
struct ib_ah *ocrdma_create_ah(struct ib_pd *pd, struct ib_ah_attr *ah_attr,
struct ib_udata *udata);
int ocrdma_destroy_ah(struct ib_ah *ah);
int ocrdma_query_ah(struct ib_ah *ah, struct ib_ah_attr *ah_attr);
int ocrdma_modify_ah(struct ib_ah *ah, struct ib_ah_attr *ah_attr);

int ocrdma_process_mad(struct ib_device *,
int process_mad_flags,
Expand Down

0 comments on commit bef4211

Please sign in to comment.