Blame view

drivers/ata/ahci-uclass.c 308 Bytes
e3b5f0414   Simon Glass   ahci: Add a disk-...
1
2
3
4
5
6
7
8
  /*
   * Copyright (c) 2015 Google, Inc
   * Written by Simon Glass <sjg@chromium.org>
   *
   * SPDX-License-Identifier:	GPL-2.0+
   */
  
  #include <common.h>
bfc1c6b48   Simon Glass   dm: ahci: Correct...
9
  #include <ahci.h>
e3b5f0414   Simon Glass   ahci: Add a disk-...
10
  #include <dm.h>
a219639d4   Simon Glass   dm: Rename disk u...
11
12
13
  UCLASS_DRIVER(ahci) = {
  	.id		= UCLASS_AHCI,
  	.name		= "ahci",
bfc1c6b48   Simon Glass   dm: ahci: Correct...
14
  	.per_device_auto_alloc_size = sizeof(struct ahci_uc_priv),
e3b5f0414   Simon Glass   ahci: Add a disk-...
15
  };