blob: 71600fed68553bb82ff838ff99f798dbf8a7ff4e [file] [log] [blame]
Simon Glasse3b5f042016-01-17 16:11:34 -07001/*
2 * Copyright (c) 2015 Google, Inc
3 * Written by Simon Glass <sjg@chromium.org>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#include <common.h>
Simon Glassbfc1c6b2017-07-04 13:31:22 -06009#include <ahci.h>
Simon Glasse3b5f042016-01-17 16:11:34 -070010#include <dm.h>
11
Simon Glassa2196392016-05-01 11:35:52 -060012UCLASS_DRIVER(ahci) = {
13 .id = UCLASS_AHCI,
14 .name = "ahci",
Simon Glassbfc1c6b2017-07-04 13:31:22 -060015 .per_device_auto_alloc_size = sizeof(struct ahci_uc_priv),
Simon Glasse3b5f042016-01-17 16:11:34 -070016};