Merge branch 'master' of https://source.denx.de/u-boot/custodians/u-boot-sh
[u-boot.git] / drivers / extcon / extcon-sandbox.c
blobab6a6c1cfdc73e800b9f7a8e27c3d3f4c67ee08f
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * Copyright (c) 2022 Svyatoslav Ryhel <clamor95@gmail.com>
4 */
6 #include <dm.h>
8 static const struct udevice_id sandbox_extcon_ids[] = {
9 { .compatible = "sandbox,extcon" },
10 { /* sentinel */ }
13 U_BOOT_DRIVER(extcon_sandbox) = {
14 .name = "extcon_sandbox",
15 .id = UCLASS_EXTCON,
16 .of_match = sandbox_extcon_ids,