ioat(4): Make channel indices unsigned
Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
+2
-2
@@ -152,8 +152,8 @@ MODULE_VERSION(ioat, 1);
|
||||
* Private data structures
|
||||
*/
|
||||
static struct ioat_softc *ioat_channel[IOAT_MAX_CHANNELS];
|
||||
static int ioat_channel_index = 0;
|
||||
SYSCTL_INT(_hw_ioat, OID_AUTO, channels, CTLFLAG_RD, &ioat_channel_index, 0,
|
||||
static unsigned ioat_channel_index = 0;
|
||||
SYSCTL_UINT(_hw_ioat, OID_AUTO, channels, CTLFLAG_RD, &ioat_channel_index, 0,
|
||||
"Number of IOAT channels attached");
|
||||
|
||||
static struct _pcsid
|
||||
|
||||
@@ -455,7 +455,7 @@ struct ioat_softc {
|
||||
})
|
||||
|
||||
int version;
|
||||
int chan_idx;
|
||||
unsigned chan_idx;
|
||||
|
||||
struct mtx submit_lock;
|
||||
device_t device;
|
||||
|
||||
Reference in New Issue
Block a user