blob: d398b50b9a1e781629e7e75affedcbee5cd2d523 [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
Patrick Delaunayb953ec22021-04-27 11:02:19 +02007#define LOG_CATEGORY UCLASS_AHCI
8
Simon Glasse3b5f042016-01-17 16:11:34 -07009#include <common.h>
Simon Glassbfc1c6b2017-07-04 13:31:22 -060010#include <ahci.h>
Simon Glasse3b5f042016-01-17 16:11:34 -070011#include <dm.h>
12
Simon Glassa2196392016-05-01 11:35:52 -060013UCLASS_DRIVER(ahci) = {
14 .id = UCLASS_AHCI,
15 .name = "ahci",
Simon Glass41575d82020-12-03 16:55:17 -070016 .per_device_auto = sizeof(struct ahci_uc_priv),
Simon Glasse3b5f042016-01-17 16:11:34 -070017};