mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
9d922450aa
This header includes things that are needed to make driver build. Adjust existing users to include that always, even if other dm/ includes are present Signed-off-by: Simon Glass <sjg@chromium.org>
11 lines
212 B
C
11 lines
212 B
C
/*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <dm.h>
|
|
|
|
/* Firmware access is platform-dependent. No generic code in uclass */
|
|
UCLASS_DRIVER(firmware) = {
|
|
.id = UCLASS_FIRMWARE,
|
|
.name = "firmware",
|
|
};
|