commit | fb5277f2c2e4db4a29740ff071072a688892d2df | [log] [tgz] |
---|---|---|
author | Denys Vlasenko <dvlasenk@redhat.com> | Wed Apr 20 17:45:54 2016 +0200 |
committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | Fri May 13 14:46:45 2016 -0700 |
tree | 778ebc482001afc2a817fe893bc25c2c4fbab8dc | |
parent | 8008f68cb805c0099723ba1b58d26257a52ce890 [diff] |
e1000e: e1000e_cyclecounter_read(): incvalue is 32 bits, not 64 "incvalue" variable holds a result of "er32(TIMINCA) & E1000_TIMINCA_INCVALUE_MASK" and used in "do_div(temp, incvalue)" as a divisor. Thus, "u64 incvalue" declaration is probably a mistake. Even though it seems to be a harmless one, let's fix it. Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com> Tested-by: Aaron Brown <aaron.f.brown@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>