diff options
| author | hathach <[email protected]> | 2024-10-11 17:53:39 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2024-10-11 17:53:39 +0700 |
| commit | 1587d48e89cbaa8d0d1c870809bc40c3c8d1056f (patch) | |
| tree | a01565a3ddfef6225497dc4e83ffc0fa93830ce2 /src/portable/template | |
| parent | f3b7d7515e9cae834013dc9ee3a67d87111090eb (diff) | |
hcd_init() take init struct
Diffstat (limited to 'src/portable/template')
| -rw-r--r-- | src/portable/template/hcd_template.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/portable/template/hcd_template.c b/src/portable/template/hcd_template.c index b073d6057..9386e95cc 100644 --- a/src/portable/template/hcd_template.c +++ b/src/portable/template/hcd_template.c @@ -44,9 +44,8 @@ bool hcd_configure(uint8_t rhport, uint32_t cfg_id, const void* cfg_param) { } // Initialize controller to host mode -bool hcd_init(uint8_t rhport) { - (void) rhport; - +bool hcd_init(const tusb_rhport_init_t* rh_init) { + (void) rh_init; return false; } |
