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