lpc-uclass.c 255 B

1234567891011121314
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright (c) 2015 Google, Inc
  4. * Written by Simon Glass <sjg@chromium.org>
  5. */
  6. #include <common.h>
  7. #include <dm.h>
  8. UCLASS_DRIVER(lpc) = {
  9. .id = UCLASS_LPC,
  10. .name = "lpc",
  11. .post_bind = dm_scan_fdt_dev,
  12. };