mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
20e442ab2d
The current macro is a misnomer since it does not declare a device directly. Instead, it declares driver_info record which U-Boot uses at runtime to create a device. The distinction seems somewhat minor most of the time, but is becomes quite confusing when we actually want to declare a device, with of-platdata. We are left trying to distinguish between a device which isn't actually device, and a device that is (perhaps an 'instance'?) It seems better to rename this macro to describe what it actually is. The macros is not widely used, since boards should use devicetree to declare devices. Rename it to U_BOOT_DRVINFO(), which indicates clearly that this is declaring a new driver_info record, not a device. Signed-off-by: Simon Glass <sjg@chromium.org>
46 lines
808 B
C
46 lines
808 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (c) 2013 Google, Inc
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <dm.h>
|
|
#include <dm-demo.h>
|
|
|
|
static const struct dm_demo_pdata red_square = {
|
|
.colour = "red",
|
|
.sides = 4.
|
|
};
|
|
static const struct dm_demo_pdata green_triangle = {
|
|
.colour = "green",
|
|
.sides = 3.
|
|
};
|
|
static const struct dm_demo_pdata yellow_hexagon = {
|
|
.colour = "yellow",
|
|
.sides = 6.
|
|
};
|
|
|
|
U_BOOT_DRVINFO(demo0) = {
|
|
.name = "demo_shape_drv",
|
|
.plat = &red_square,
|
|
};
|
|
|
|
U_BOOT_DRVINFO(demo1) = {
|
|
.name = "demo_simple_drv",
|
|
.plat = &red_square,
|
|
};
|
|
|
|
U_BOOT_DRVINFO(demo2) = {
|
|
.name = "demo_shape_drv",
|
|
.plat = &green_triangle,
|
|
};
|
|
|
|
U_BOOT_DRVINFO(demo3) = {
|
|
.name = "demo_simple_drv",
|
|
.plat = &yellow_hexagon,
|
|
};
|
|
|
|
U_BOOT_DRVINFO(demo4) = {
|
|
.name = "demo_shape_drv",
|
|
.plat = &yellow_hexagon,
|
|
};
|