diff options
author | Rupesh Gujare <rupesh.gujare@atmel.com> | 2013-08-05 12:14:04 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-08-12 14:00:29 -0700 |
commit | 5cf9d2577f22eebf2263e6cd91b942b7016845d2 (patch) | |
tree | 83bbd5e138b302bdb4459e7bf28cf8b24a03625c /drivers/staging/ozwpan | |
parent | fbf8d7106c926d375c76e65cc878f4fa7b91cbc3 (diff) |
staging: ozwpan: Fix build warning.
This patch fixes following build warning.
drivers/built-in.o: In function `oz_hcd_heartbeat':
>> (.text+0x30aadd): undefined reference to `__divdi3'
drivers/built-in.o: In function `oz_hcd_heartbeat':
>> (.text+0x30ac85): undefined reference to `__divdi3'
Reported-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Rupesh Gujare <rupesh.gujare@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/ozwpan')
-rw-r--r-- | drivers/staging/ozwpan/ozhcd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/ozwpan/ozhcd.c b/drivers/staging/ozwpan/ozhcd.c index f81a0c53b39..ed63868e602 100644 --- a/drivers/staging/ozwpan/ozhcd.c +++ b/drivers/staging/ozwpan/ozhcd.c @@ -1042,7 +1042,7 @@ int oz_hcd_heartbeat(void *hport) if (ep->credit < 0) continue; delta = timespec_sub(ts, ep->timestamp); - ep->credit += timespec_to_ns(&delta) / NSEC_PER_MSEC; + ep->credit += div_u64(timespec_to_ns(&delta), NSEC_PER_MSEC); if (ep->credit > ep->credit_ceiling) ep->credit = ep->credit_ceiling; ep->timestamp = ts; @@ -1086,7 +1086,7 @@ int oz_hcd_heartbeat(void *hport) continue; } delta = timespec_sub(ts, ep->timestamp); - ep->credit += timespec_to_ns(&delta) / NSEC_PER_MSEC; + ep->credit += div_u64(timespec_to_ns(&delta), NSEC_PER_MSEC); ep->timestamp = ts; while (!list_empty(&ep->urb_list)) { struct oz_urb_link *urbl = |