Page MenuHomeFreeBSD

wpi(4): use more correct types
ClosedPublic

Authored by avos on Oct 1 2015, 2:24 PM.
Tags
None
Referenced Files
F131832944: D3763.diff
Sat, Oct 11, 1:29 PM
F131816247: D3763.id9012.diff
Sat, Oct 11, 10:04 AM
Unknown Object (File)
Tue, Sep 16, 3:40 PM
Unknown Object (File)
Sun, Sep 14, 8:41 AM
Unknown Object (File)
Sun, Sep 14, 4:50 AM
Unknown Object (File)
Aug 27 2025, 5:27 PM
Unknown Object (File)
Aug 1 2025, 10:50 AM
Unknown Object (File)
Jul 20 2025, 9:31 AM
Subscribers

Details

Test Plan

Tested with Intel 3945BG, STA mode

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

avos retitled this revision from to wpi(4): use more correct types.
avos updated this object.
avos edited the test plan for this revision. (Show Details)
avos added a reviewer: adrian.
avos set the repository for this revision to rS FreeBSD src repository - subversion.

Hi,

So there are a lot of changes from int to something else. I think you should explain to people why the changes are useful as part of the description.

For example, people tend to just use 'int' for array iteration, and you've changed a handful of those over to be uint8_t. Why's that?

In D3763#79519, @adrian wrote:

Hi,

So there are a lot of changes from int to something else. I think you should explain to people why the changes are useful as part of the description.

For example, people tend to just use 'int' for array iteration, and you've changed a handful of those over to be uint8_t. Why's that?

This change fixes some amount of -Wsign-conversion and -Wconversion warnings + sets correct sizes for some variables (as a result, some loop counters were touched too).

This revision was automatically updated to reflect the committed changes.