This patch fixes: ERROR: "foo * bar" should be "foo *bar" Signed-off-by: Swetha <theonly.ultimate@xxxxxxxxx> --- drivers/staging/rdma/ipath/ipath_common.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/staging/rdma/ipath/ipath_common.h b/drivers/staging/rdma/ipath/ipath_common.h index 3f9b4bc..9ce581e 100644 --- a/drivers/staging/rdma/ipath/ipath_common.h +++ b/drivers/staging/rdma/ipath/ipath_common.h @@ -798,24 +798,24 @@ struct ether_header { /* functions for extracting fields from rcvhdrq entries for the driver. */ -static inline __u32 ipath_hdrget_err_flags(const __le32 * rbuf) +static inline __u32 ipath_hdrget_err_flags(const __le32 *rbuf) { return __le32_to_cpu(rbuf[1]) & INFINIPATH_RHF_H_ERR_MASK; } -static inline __u32 ipath_hdrget_rcv_type(const __le32 * rbuf) +static inline __u32 ipath_hdrget_rcv_type(const __le32 *rbuf) { return (__le32_to_cpu(rbuf[0]) >> INFINIPATH_RHF_RCVTYPE_SHIFT) & INFINIPATH_RHF_RCVTYPE_MASK; } -static inline __u32 ipath_hdrget_length_in_bytes(const __le32 * rbuf) +static inline __u32 ipath_hdrget_length_in_bytes(const __le32 *rbuf) { return ((__le32_to_cpu(rbuf[0]) >> INFINIPATH_RHF_LENGTH_SHIFT) & INFINIPATH_RHF_LENGTH_MASK) << 2; } -static inline __u32 ipath_hdrget_index(const __le32 * rbuf) +static inline __u32 ipath_hdrget_index(const __le32 *rbuf) { return (__le32_to_cpu(rbuf[0]) >> INFINIPATH_RHF_EGRINDEX_SHIFT) & INFINIPATH_RHF_EGRINDEX_MASK; -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html