dawnhan | 56f157b | 2023-10-09 16:59:45 -0700 | [diff] [blame] | 1 | /* |
| 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 Thibert | fd19358 | 2024-07-03 18:21:13 +0000 | [diff] [blame] | 9 | static int backend_mock_init(struct driver *drv) |
| 10 | { |
dawnhan | 56f157b | 2023-10-09 16:59:45 -0700 | [diff] [blame] | 11 | return 0; |
| 12 | } |
| 13 | |
| 14 | const struct backend backend_mock = { |
| 15 | .name = "Mock Backend", |
| 16 | .init = backend_mock_init, |
| 17 | }; |