summaryrefslogtreecommitdiff
path: root/tinyusb/class/msc_host.c
diff options
context:
space:
mode:
authorhathach <[email protected]>2015-05-01 19:16:56 +0700
committerhathach <[email protected]>2015-05-01 19:16:56 +0700
commit6ecea8666969e4cee5434f5b6bcbc5289c9f7e58 (patch)
treef4b7abbf49e16312beeac73f14798ebc129e18ba /tinyusb/class/msc_host.c
parenta3e7c104b3e4eb15c6a7846650274636f40df78e (diff)
tusbh_device_ to tuh_device_
Diffstat (limited to 'tinyusb/class/msc_host.c')
-rw-r--r--tinyusb/class/msc_host.c2
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;
}