ahci-uclass.c 305 B

123456789101112131415
  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 <ahci.h>
  8. #include <dm.h>
  9. UCLASS_DRIVER(ahci) = {
  10. .id = UCLASS_AHCI,
  11. .name = "ahci",
  12. .per_device_auto_alloc_size = sizeof(struct ahci_uc_priv),
  13. };