mirror of
https://github.com/NVIDIA/open-gpu-kernel-modules.git
synced 2025-03-14 09:29:24 +01:00
Remove unnecessary comment and local variable
This commit is contained in:
parent
cf8d063626
commit
8ad52df897
@ -35,13 +35,10 @@
|
||||
//
|
||||
NvU32 nvLogBase2(NvU64 val)
|
||||
{
|
||||
// Use two NV_ASSERTs for better error identification
|
||||
NV_ASSERT(val != 0);
|
||||
NV_ASSERT(((val) & (val - 1)) == 0);
|
||||
|
||||
NvU32 i = portUtilCountTrailingZeros64(val);
|
||||
|
||||
return i;
|
||||
return portUtilCountTrailingZeros64(val);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user