xref: /rk3399_rockchip-uboot/drivers/firmware/firmware-uclass.c (revision 93a7515a89b7c181f810a1b9d77717f5e7a27e5f)
1 /*
2  * SPDX-License-Identifier:	GPL-2.0+
3  */
4 
5 #include <common.h>
6 #include <dm.h>
7 
8 /* Firmware access is platform-dependent.  No generic code in uclass */
9 UCLASS_DRIVER(firmware) = {
10 	.id		= UCLASS_FIRMWARE,
11 	.name		= "firmware",
12 };
13