diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2016-01-07 12:53:38 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2016-01-07 12:53:38 +0000 |
commit | c451e889ac885e7fb2c07358e6700500c6202f40 (patch) | |
tree | 44aa81f0e1dffb6b87d2990d7735417cc3b55c0e /sys/dev/usb/uslcom.c | |
parent | 58d7aff838c31632534e99e95c1d6a8ee319c36a (diff) |
Rename some wrongly defined *_CONFIG_NO into *_CONFIG_INDEX.
Configuration indexes start a 0, for the default one, while
numbers correspond to the 'bConfigurationValue' field of a
config descriptor.
Diffstat (limited to 'sys/dev/usb/uslcom.c')
-rw-r--r-- | sys/dev/usb/uslcom.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/uslcom.c b/sys/dev/usb/uslcom.c index 0a821b2f79e..b3fca7c6afa 100644 --- a/sys/dev/usb/uslcom.c +++ b/sys/dev/usb/uslcom.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uslcom.c,v 1.36 2015/06/18 10:47:44 jsg Exp $ */ +/* $OpenBSD: uslcom.c,v 1.37 2016/01/07 12:53:37 mpi Exp $ */ /* * Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org> @@ -38,7 +38,7 @@ int uslcomdebug = 0; #define DPRINTF(x) DPRINTFN(0, x) #define USLCOMBUFSZ 256 -#define USLCOM_CONFIG_NO 0 +#define USLCOM_CONFIG_INDEX 0 #define USLCOM_IFACE_NO 0 #define USLCOM_SET_DATA_BITS(x) (x << 8) @@ -297,7 +297,7 @@ uslcom_attach(struct device *parent, struct device *self, void *aux) bzero(&uca, sizeof(uca)); sc->sc_udev = uaa->device; - if (usbd_set_config_index(sc->sc_udev, USLCOM_CONFIG_NO, 1) != 0) { + if (usbd_set_config_index(sc->sc_udev, USLCOM_CONFIG_INDEX, 1) != 0) { printf("%s: could not set configuration no\n", sc->sc_dev.dv_xname); usbd_deactivate(sc->sc_udev); |