blob: 67012ad1e11d333b4e80cb7a07f564e5bd67bb40 [file] [log] [blame]
dawnhan56f157b2023-10-09 16:59:45 -07001/*
2 * Copyright 2023 The Chromium OS Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7#include "drv_priv.h"
8
Jean-François Thibertfd193582024-07-03 18:21:13 +00009static int backend_mock_init(struct driver *drv)
10{
dawnhan56f157b2023-10-09 16:59:45 -070011 return 0;
12}
13
14const struct backend backend_mock = {
15 .name = "Mock Backend",
16 .init = backend_mock_init,
17};