forked from mirrors/qmk_userspace
Fix mismatched aliased event and event stub function prototypes.
This commit is contained in:
parent
c7e1b53913
commit
df8e417032
14 changed files with 38 additions and 13 deletions
|
@ -353,10 +353,15 @@ static int CDC_Device_getchar_Blocking(FILE* Stream)
|
|||
}
|
||||
#endif
|
||||
|
||||
void CDC_Device_Event_Stub(void)
|
||||
void CDC_Device_Event_Stub(USB_ClassInfo_CDC_Device_t* const CDCInterfaceInfo)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void CDC_Device_Event_Stub_2(USB_ClassInfo_CDC_Device_t* const CDCInterfaceInfo, const uint8_t _1)
|
||||
{
|
||||
CDC_Device_Event_Stub(CDCInterfaceInfo);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue