aboutsummaryrefslogtreecommitdiff
path: root/LUFA/Drivers/USB/Core/HostStandardReq.c
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2011-07-12 05:18:10 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2011-07-12 05:18:10 +0000
commit9246d3f4d88b51c71c239a2c7ee60d31b4cb1788 (patch)
treeb8370a871f7f53f24330491e3ff6e07e9e0b130c /LUFA/Drivers/USB/Core/HostStandardReq.c
parente3388fc429ee4253913d863caca59b97eb8082d2 (diff)
Add more missing function attributes to the TWI peripheral driver.
Fix incorrect standard request name in the host standard request driver. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1863 d5102386-fcda-11dd-9fdb-3debd5008f28
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 12ccd91e..3da22208 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,