blob: 42bbff962bcfc2886a6bac623e862830bb8d5402 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glasse3b5f042016-01-17 16:11:34 -07002/*
3 * Copyright (c) 2015 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Simon Glasse3b5f042016-01-17 16:11:34 -07005 */
6
7#include <common.h>
Simon Glassbfc1c6b2017-07-04 13:31:22 -06008#include <ahci.h>
Simon Glasse3b5f042016-01-17 16:11:34 -07009#include <dm.h>
10
Simon Glassa2196392016-05-01 11:35:52 -060011UCLASS_DRIVER(ahci) = {
12 .id = UCLASS_AHCI,
13 .name = "ahci",
Simon Glassbfc1c6b2017-07-04 13:31:22 -060014 .per_device_auto_alloc_size = sizeof(struct ahci_uc_priv),
Simon Glasse3b5f042016-01-17 16:11:34 -070015};