aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Core/HostStandardReq.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2011-07-12 05:18:10 +0000
committerDean Camera <dean@fourwalledcubicle.com>2011-07-12 05:18:10 +0000
commit04287b76c578b61fb16c90600af622d3e22e523b (patch)
treeb8370a871f7f53f24330491e3ff6e07e9e0b130c /LUFA/Drivers/USB/Core/HostStandardReq.c
parent7207b0569529f5dcf180ec1d84d86c3f573168aa (diff)
downloadlufa-04287b76c578b61fb16c90600af622d3e22e523b.tar.gz
lufa-04287b76c578b61fb16c90600af622d3e22e523b.tar.bz2
lufa-04287b76c578b61fb16c90600af622d3e22e523b.zip
Add more missing function attributes to the TWI peripheral driver.
Fix incorrect standard request name in the host standard request driver.
Diffstat (limited to 'LUFA/Drivers/USB/Core/HostStandardReq.c')
-rw-r--r--LUFA/Drivers/USB/Core/HostStandardReq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/Drivers/USB/Core/HostStandardReq.c b/LUFA/Drivers/USB/Core/HostStandardReq.c
index 12ccd91e3..3da222086 100644
--- a/LUFA/Drivers/USB/Core/HostStandardReq.c
+++ b/LUFA/Drivers/USB/Core/HostStandardReq.c
@@ -243,7 +243,7 @@ uint8_t USB_Host_GetDeviceStatus(uint8_t* const FeatureStatus)
USB_ControlRequest = (USB_Request_Header_t)
{
.bmRequestType = (REQDIR_DEVICETOHOST | REQTYPE_STANDARD | REQREC_DEVICE),
- .bRequest = REQ_GetFeature,
+ .bRequest = REQ_GetStatus,
.wValue = 0,
.wIndex = 0,
.wLength = 0,