]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/dm/platdata.h
0d4d561089a03c7db0416f42bf2a84cde5cc89c8
[karo-tx-uboot.git] / include / dm / platdata.h
1 /*
2  * Copyright (c) 2013 Google, Inc
3  *
4  * (C) Copyright 2012
5  * Pavel Herrmann <morpheus.ibis@gmail.com>
6  * Marek Vasut <marex@denx.de>
7  *
8  * SPDX-License-Identifier:     GPL-2.0+
9  */
10
11 #ifndef _DM_PLATDATA_H
12 #define _DM_PLATDATA_H
13
14 #include <linker_lists.h>
15
16 /**
17  * struct driver_info - Information required to instantiate a device
18  *
19  * @name:       Driver name
20  * @platdata:   Driver-specific platform data
21  */
22 struct driver_info {
23         const char *name;
24         const void *platdata;
25 };
26
27 #define U_BOOT_DEVICE(__name)                                           \
28         ll_entry_declare(struct driver_info, __name, driver_info)
29
30 #endif