mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-06 23:36:59 +02:00
This will now apply fixups prior to devices being bound, which makes it possible to enable/disable devices and adjust more properties that might be read before devices probe. Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
13 lines
296 B
C
13 lines
296 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#ifndef __QCOM_PRIV_H__
|
|
#define __QCOM_PRIV_H__
|
|
|
|
#if IS_ENABLED(CONFIG_EFI_HAVE_CAPSULE_SUPPORT)
|
|
void qcom_configure_capsule_updates(void);
|
|
#else
|
|
void qcom_configure_capsule_updates(void) {}
|
|
#endif /* EFI_HAVE_CAPSULE_SUPPORT */
|
|
|
|
#endif /* __QCOM_PRIV_H__ */
|