firmware-uclass.c 232 B

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