firmware-uclass.c 219 B

1234567891011
  1. /*
  2. * SPDX-License-Identifier: GPL-2.0+
  3. */
  4. #include <dm/uclass.h>
  5. /* Firmware access is platform-dependent. No generic code in uclass */
  6. UCLASS_DRIVER(firmware) = {
  7. .id = UCLASS_FIRMWARE,
  8. .name = "firmware",
  9. };