"Das U-Boot" Source Tree
1// SPDX-License-Identifier: GPL-2.0+
2
3#define LOG_CATEGORY UCLASS_FIRMWARE
4
5#include <dm.h>
6
7/* Firmware access is platform-dependent. No generic code in uclass */
8UCLASS_DRIVER(firmware) = {
9 .id = UCLASS_FIRMWARE,
10 .name = "firmware",
11#if CONFIG_IS_ENABLED(OF_REAL)
12 .post_bind = dm_scan_fdt_dev,
13#endif
14};