blob: c4c7a03fe744d6c53d2d014b16c9223b148cab9e [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
7#include <common.h>
Simon Glass8c679342017-07-04 13:31:22 -06008#include <ahci.h>
Simon Glasscfe85a82016-01-17 16:11:34 -07009#include <dm.h>
10
Simon Glass85ee1652016-05-01 11:35:52 -060011UCLASS_DRIVER(ahci) = {
12 .id = UCLASS_AHCI,
13 .name = "ahci",
Simon Glass8a2b47f2020-12-03 16:55:17 -070014 .per_device_auto = sizeof(struct ahci_uc_priv),
Simon Glasscfe85a82016-01-17 16:11:34 -070015};