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 return 0; 11 } 12 13 const struct backend backend_mock = { 14 .name = "Mock Backend", 15 .init = backend_mock_init, 16 }; 17