ahci-uclass.c 328 B

1234567891011121314151617
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright (c) 2015 Google, Inc
  4. * Written by Simon Glass <sjg@chromium.org>
  5. */
  6. #define LOG_CATEGORY UCLASS_AHCI
  7. #include <common.h>
  8. #include <ahci.h>
  9. #include <dm.h>
  10. UCLASS_DRIVER(ahci) = {
  11. .id = UCLASS_AHCI,
  12. .name = "ahci",
  13. .per_device_auto = sizeof(struct ahci_uc_priv),
  14. };