Svyatoslav Ryhel | 8b215e1 | 2023-04-25 10:57:21 +0300 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
2 | /* | ||||
3 | * Copyright (c) 2022 Svyatoslav Ryhel <clamor95@gmail.com> | ||||
4 | */ | ||||
5 | |||||
6 | #include <dm.h> | ||||
7 | |||||
8 | static const struct udevice_id sandbox_extcon_ids[] = { | ||||
9 | { .compatible = "sandbox,extcon" }, | ||||
10 | { /* sentinel */ } | ||||
11 | }; | ||||
12 | |||||
13 | U_BOOT_DRIVER(extcon_sandbox) = { | ||||
14 | .name = "extcon_sandbox", | ||||
15 | .id = UCLASS_EXTCON, | ||||
16 | .of_match = sandbox_extcon_ids, | ||||
17 | }; |