summaryrefslogtreecommitdiff
path: root/src/usbh_lld_stm32f4.c
diff options
context:
space:
mode:
authorAmir Hammad <amir.hammad@hotmail.com>2016-06-24 00:47:47 +0200
committerAmir Hammad <amir.hammad@hotmail.com>2016-06-25 10:09:54 +0200
commit40192caee01bd5fe6c8ed2c61798c95782ccfdd2 (patch)
tree651640e2926dc249c12b4431056dd24225f2705f /src/usbh_lld_stm32f4.c
parent0432429aa6bcecfeeeccf4ba9b4cca28206b4863 (diff)
downloadsecure-hid-40192caee01bd5fe6c8ed2c61798c95782ccfdd2.tar.gz
secure-hid-40192caee01bd5fe6c8ed2c61798c95782ccfdd2.tar.bz2
secure-hid-40192caee01bd5fe6c8ed2c61798c95782ccfdd2.zip
let the user build an array of lld drivers
Signed-off-by: Amir Hammad <amir.hammad@hotmail.com>
Diffstat (limited to 'src/usbh_lld_stm32f4.c')
-rw-r--r--src/usbh_lld_stm32f4.c13
1 files changed, 2 insertions, 11 deletions
diff --git a/src/usbh_lld_stm32f4.c b/src/usbh_lld_stm32f4.c
index 8b98321..49f6cc2 100644
--- a/src/usbh_lld_stm32f4.c
+++ b/src/usbh_lld_stm32f4.c
@@ -1025,6 +1025,7 @@ static const usbh_driver_t driver_fs = {
.root_speed = root_speed,
.driver_data = &driver_data_fs
};
+const void *usbh_lld_stm32f4_driver_fs = &driver_fs;
#endif
// USB High Speed - OTG_HS
@@ -1044,15 +1045,5 @@ static const usbh_driver_t driver_hs = {
.root_speed = root_speed,
.driver_data = &driver_data_hs
};
+const void *usbh_lld_stm32f4_driver_hs = &driver_hs;
#endif
-
-const void *usbh_lld_stm32f4_drivers[] = {
-#if defined(USE_STM32F4_USBH_DRIVER_FS)
- &driver_fs,
-#endif
-
-#if defined(USE_STM32F4_USBH_DRIVER_HS)
- &driver_hs,
-#endif
- 0
-};