diff options
| author | hathach <[email protected]> | 2015-05-01 19:16:56 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2015-05-01 19:16:56 +0700 |
| commit | 6ecea8666969e4cee5434f5b6bcbc5289c9f7e58 (patch) | |
| tree | f4b7abbf49e16312beeac73f14798ebc129e18ba /tinyusb/class/msc_host.c | |
| parent | a3e7c104b3e4eb15c6a7846650274636f40df78e (diff) | |
tusbh_device_ to tuh_device_
Diffstat (limited to 'tinyusb/class/msc_host.c')
| -rw-r--r-- | tinyusb/class/msc_host.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyusb/class/msc_host.c b/tinyusb/class/msc_host.c index b961c1724..5dcc6f301 100644 --- a/tinyusb/class/msc_host.c +++ b/tinyusb/class/msc_host.c @@ -69,7 +69,7 @@ TUSB_CFG_ATTR_USBRAM ATTR_ALIGNED(4) STATIC_VAR uint8_t msch_buffer[sizeof(scsi_ //--------------------------------------------------------------------+
bool tuh_msc_is_mounted(uint8_t dev_addr)
{
- return tusbh_device_is_configured(dev_addr) && // is configured can be omitted
+ return tuh_device_is_configured(dev_addr) && // is configured can be omitted
msch_data[dev_addr-1].is_initialized;
}
|
