diff options
author | Amir Hammad <amir.hammad@hotmail.com> | 2016-07-08 23:27:18 +0200 |
---|---|---|
committer | Amir Hammad <amir.hammad@hotmail.com> | 2016-07-08 23:45:57 +0200 |
commit | 1c8aa9d315ff09194df53d9b1af755e03168cd64 (patch) | |
tree | ecca6f997045397ebd6bd4caa1cc472c1ab5b829 /include | |
parent | 2c0f82a4f07fe35bc043f68b9f58b954a16ea689 (diff) | |
download | secure-hid-1c8aa9d315ff09194df53d9b1af755e03168cd64.tar.gz secure-hid-1c8aa9d315ff09194df53d9b1af755e03168cd64.tar.bz2 secure-hid-1c8aa9d315ff09194df53d9b1af755e03168cd64.zip |
rename usbh_driver to usbh_low_level_driver
Signed-off-by: Amir Hammad <amir.hammad@hotmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/driver/usbh_device_driver.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/driver/usbh_device_driver.h b/include/driver/usbh_device_driver.h index 2839a17..4f0ecea 100644 --- a/include/driver/usbh_device_driver.h +++ b/include/driver/usbh_device_driver.h @@ -142,7 +142,7 @@ struct _usbh_packet { }; typedef struct _usbh_packet usbh_packet_t; -struct _usbh_driver { +struct _usbh_low_level_driver { /** * @brief init initialization routine of the low-level driver * @@ -178,7 +178,7 @@ struct _usbh_driver { */ void *driver_data; }; -typedef struct _usbh_driver usbh_driver_t; +typedef struct _usbh_low_level_driver usbh_low_level_driver_t; struct _usbh_generic_data { usbh_device_t usbh_device[USBH_MAX_DEVICES]; |