blob: 7affb3f1ec7954cf36a86b45c26b378d6d8d5c79 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glasscfe85a82016-01-17 16:11:34 -07002/*
3 * Copyright (c) 2015 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Simon Glasscfe85a82016-01-17 16:11:34 -07005 */
6
Patrick Delaunay81313352021-04-27 11:02:19 +02007#define LOG_CATEGORY UCLASS_AHCI
8
Simon Glass8c679342017-07-04 13:31:22 -06009#include <ahci.h>
Simon Glasscfe85a82016-01-17 16:11:34 -070010#include <dm.h>
11
Simon Glass85ee1652016-05-01 11:35:52 -060012UCLASS_DRIVER(ahci) = {
13 .id = UCLASS_AHCI,
14 .name = "ahci",
Simon Glass8a2b47f2020-12-03 16:55:17 -070015 .per_device_auto = sizeof(struct ahci_uc_priv),
Simon Glasscfe85a82016-01-17 16:11:34 -070016};