remove unnecessary cast now that lint is more intelligent.

This commit is contained in:
christos 2010-03-21 00:04:34 +00:00
parent ac4eda1b1e
commit f7c98956a3

View File

@ -1,4 +1,4 @@
/* $NetBSD: bitops.h,v 1.5 2010/03/20 14:43:50 christos Exp $ */
/* $NetBSD: bitops.h,v 1.6 2010/03/21 00:04:34 christos Exp $ */
/*-
* Copyright (c) 2007, 2010 The NetBSD Foundation, Inc.
@ -279,7 +279,7 @@ fast_divide32(uint32_t _v, uint32_t _div, uint32_t _m, uint8_t _s1,
{
uint32_t _t;
_t = (uint32_t)(((uint64_t)_v * _m) >> 32);
_t = ((uint64_t)_v * _m) >> 32;
return (_t + ((_v - _t) >> _s1)) >> _s2;
}