blob: 42bbff962bcfc2886a6bac623e862830bb8d5402 [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 Glass8c679342017-07-04 13:31:22 -060014 .per_device_auto_alloc_size = sizeof(struct ahci_uc_priv),
Simon Glasscfe85a82016-01-17 16:11:34 -070015};