diff options
author | Mike Marciniszyn <mike.marciniszyn@qlogic.com> | 2011-11-09 13:36:08 -0500 |
---|---|---|
committer | Roland Dreier <roland@purestorage.com> | 2012-01-03 20:52:12 -0800 |
commit | 8482d5d1bc18c17429a89ad37f8b74d5a16de239 (patch) | |
tree | 4d2f952d8960b198234d5f7f09efac30d96ff1a2 /drivers/infiniband/hw/qib/qib_qsfp.h | |
parent | 865b64be86ed6e3e6137ce6506f31051097bf9cb (diff) |
IB/qib: Eliminate 64-bit jiffies use
The qib driver makes use of the the 64-bit jiffies API.
Code inspection reveals that that version of the API is not really
required. This patch converts to use the "normal" jiffies.
Reviewed-by: Ram Vepa <ram.vepa@qlogic.com>
Signed-off-by: Mike Marciniszyn <mike.marciniszyn@qlogic.com>
Signed-off-by: Roland Dreier <roland@purestorage.com>
Diffstat (limited to 'drivers/infiniband/hw/qib/qib_qsfp.h')
-rw-r--r-- | drivers/infiniband/hw/qib/qib_qsfp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/qib/qib_qsfp.h b/drivers/infiniband/hw/qib/qib_qsfp.h index 46002a9417c..91908f533a2 100644 --- a/drivers/infiniband/hw/qib/qib_qsfp.h +++ b/drivers/infiniband/hw/qib/qib_qsfp.h @@ -177,7 +177,7 @@ struct qib_qsfp_data { struct qib_pportdata *ppd; struct work_struct work; struct qib_qsfp_cache cache; - u64 t_insert; + unsigned long t_insert; u8 modpresent; }; |