Skip to content

Commit

Permalink
nouveau: fix warning on 32-bit build.
Browse files Browse the repository at this point in the history
Signed-off-by: Dave Airlie <airlied@redhat.com>
  • Loading branch information
Dave Airlie committed Oct 16, 2012
1 parent 30f02cb commit 8a00b6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/nouveau/core/subdev/therm/fan.c
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ nouveau_therm_fan_sense(struct nouveau_therm *therm)
end = ptimer->read(ptimer);

if (cycles == 5) {
tach = (u64)60000000000;
tach = (u64)60000000000ULL;
do_div(tach, (end - start));
return tach;
} else
Expand Down

0 comments on commit 8a00b6a

Please sign in to comment.