projects
/
oweals
/
u-boot.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
sunxi: clk: enable clk and reset for CCU devices
[oweals/u-boot.git]
/
drivers
/
ata
/
ahci-uclass.c
1
// SPDX-License-Identifier: GPL-2.0+
2
/*
3
* Copyright (c) 2015 Google, Inc
4
* Written by Simon Glass <sjg@chromium.org>
5
*/
6
7
#include <common.h>
8
#include <ahci.h>
9
#include <dm.h>
10
11
UCLASS_DRIVER(ahci) = {
12
.id = UCLASS_AHCI,
13
.name = "ahci",
14
.per_device_auto_alloc_size = sizeof(struct ahci_uc_priv),
15
};