summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-06-09 09:11:04 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-06-09 09:11:04 -0600
commit6643969ba413af309e29071cbfacff76c517c890 (patch)
tree9d702e749419ee1defd3ba0e3f1a4367d41dce53 /misc
parent53b071990d48822f6b394933a3142a65c60a1be2 (diff)
downloadnuttx-6643969ba413af309e29071cbfacff76c517c890.tar.gz
nuttx-6643969ba413af309e29071cbfacff76c517c890.tar.bz2
nuttx-6643969ba413af309e29071cbfacff76c517c890.zip
Config/build changes to better support the RTL8187
Diffstat (limited to 'misc')
-rw-r--r--misc/drivers/rtl8187x/rtl8187x.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/misc/drivers/rtl8187x/rtl8187x.c b/misc/drivers/rtl8187x/rtl8187x.c
index 20d66e239..ac66854b9 100644
--- a/misc/drivers/rtl8187x/rtl8187x.c
+++ b/misc/drivers/rtl8187x/rtl8187x.c
@@ -386,7 +386,7 @@ static int rtl8187x_netuninitialize(FAR struct rtl8187x_state_s *priv);
* Private Data
****************************************************************************/
-/* This structure provides the registry entry ID informatino that will be
+/* This structure provides the registry entry ID information that will be
* used to associate the USB class driver to a connected USB device.
*/
@@ -396,15 +396,15 @@ static const const struct usbhost_id_s g_id[2] =
USB_CLASS_VENDOR_SPEC, /* base */
0xff, /* subclass */
0xff, /* proto */
- CONFIG_USB_WLAN_VID, /* vid */
- CONFIG_USB_WLAN_PID /* pid */
+ CONFIG_RTL8187_VID, /* vid */
+ CONFIG_RTL8187_PID /* pid */
},
{
0, /* base */
0, /* subclass */
0, /* proto */
- CONFIG_USB_WLAN_VID, /* vid */
- CONFIG_USB_WLAN_PID /* pid */
+ CONFIG_RTL8187_VID, /* vid */
+ CONFIG_RTL8187_PID /* pid */
}
};