blob: 3d33b6deba33dc516ac371b625ddfd3902dafada [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Masahiro Yamada573a3812017-04-14 11:10:24 +09002
Simon Glass4af0d7e2017-05-17 17:18:07 -06003#include <common.h>
Simon Glass9d922452017-05-17 17:18:03 -06004#include <dm.h>
Masahiro Yamada573a3812017-04-14 11:10:24 +09005
6/* Firmware access is platform-dependent. No generic code in uclass */
7UCLASS_DRIVER(firmware) = {
8 .id = UCLASS_FIRMWARE,
9 .name = "firmware",
Andreas Dannenbergaec99c92018-08-27 15:57:38 +053010#if CONFIG_IS_ENABLED(OF_CONTROL)
11 .post_bind = dm_scan_fdt_dev,
12#endif
Masahiro Yamada573a3812017-04-14 11:10:24 +090013};