mirror of
https://github.com/dougg3/mac-rom-simm-programmer.git
synced 2025-05-13 18:38:25 +00:00
Fix const correctness of S_USBD_INFO_T struct
This commit is contained in:
parent
0db1710871
commit
c94f064340
@ -41,9 +41,9 @@ extern "C"
|
|||||||
*/
|
*/
|
||||||
typedef struct s_usbd_info
|
typedef struct s_usbd_info
|
||||||
{
|
{
|
||||||
uint8_t *gu8DevDesc; /*!< Pointer for USB Device Descriptor */
|
uint8_t const *gu8DevDesc; /*!< Pointer for USB Device Descriptor */
|
||||||
uint8_t *gu8ConfigDesc; /*!< Pointer for USB Configuration Descriptor */
|
uint8_t const *gu8ConfigDesc; /*!< Pointer for USB Configuration Descriptor */
|
||||||
uint8_t **gu8StringDesc; /*!< Pointer for USB String Descriptor pointers */
|
uint8_t const * const *gu8StringDesc; /*!< Pointer for USB String Descriptor pointers */
|
||||||
} S_USBD_INFO_T; /*!< Device description structure */
|
} S_USBD_INFO_T; /*!< Device description structure */
|
||||||
|
|
||||||
extern const S_USBD_INFO_T gsInfo;
|
extern const S_USBD_INFO_T gsInfo;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user