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 backend_mock_init(struct driver * drv)9static int backend_mock_init(struct driver *drv) 10 { 11 return 0; 12 } 13 14 const struct backend backend_mock = { 15 .name = "Mock Backend", 16 .init = backend_mock_init, 17 }; 18