blob: 80ebd1921d8ecd05ce07ef0cb3828f15793da6d6 [file] [log] [blame]
Simon Glass44c74bd2020-11-05 06:32:11 -07001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright 2020 Google LLC
4 * Written by Simon Glass <sjg@chromium.org>
5 */
6
7#include <common.h>
8#include <dm.h>
9#include <sysinfo.h>
10
11static const struct udevice_id sysinfo_smbios_ids[] = {
12 { .compatible = "u-boot,sysinfo-smbios" },
13 { /* sentinel */ }
14};
15
16static const struct sysinfo_ops sysinfo_smbios_ops = {
17};
18
19U_BOOT_DRIVER(sysinfo_smbios) = {
20 .name = "sysinfo_smbios",
21 .id = UCLASS_SYSINFO,
22 .of_match = sysinfo_smbios_ids,
23 .ops = &sysinfo_smbios_ops,
24};