]> git.ipfire.org Git - thirdparty/u-boot.git/blame - drivers/ata/ahci-uclass.c
SPDX: Convert all of our single license tags to Linux Kernel style
[thirdparty/u-boot.git] / drivers / ata / ahci-uclass.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
e3b5f041
SG
2/*
3 * Copyright (c) 2015 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
e3b5f041
SG
5 */
6
7#include <common.h>
bfc1c6b4 8#include <ahci.h>
e3b5f041
SG
9#include <dm.h>
10
a219639d
SG
11UCLASS_DRIVER(ahci) = {
12 .id = UCLASS_AHCI,
13 .name = "ahci",
bfc1c6b4 14 .per_device_auto_alloc_size = sizeof(struct ahci_uc_priv),
e3b5f041 15};