2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2016-01-17 23:11:34 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015 Google, Inc
|
|
|
|
* Written by Simon Glass <sjg@chromium.org>
|
|
|
|
*/
|
|
|
|
|
2021-04-27 09:02:19 +00:00
|
|
|
#define LOG_CATEGORY UCLASS_AHCI
|
|
|
|
|
2016-01-17 23:11:34 +00:00
|
|
|
#include <common.h>
|
2017-07-04 19:31:22 +00:00
|
|
|
#include <ahci.h>
|
2016-01-17 23:11:34 +00:00
|
|
|
#include <dm.h>
|
|
|
|
|
2016-05-01 17:35:52 +00:00
|
|
|
UCLASS_DRIVER(ahci) = {
|
|
|
|
.id = UCLASS_AHCI,
|
|
|
|
.name = "ahci",
|
2020-12-03 23:55:17 +00:00
|
|
|
.per_device_auto = sizeof(struct ahci_uc_priv),
|
2016-01-17 23:11:34 +00:00
|
|
|
};
|