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