blob: ae0d75831e42e924e0ac5b165c5f287c3467d207 [file] [log] [blame]
/*
* Copyright 2023 The Chromium OS Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "drv_priv.h"
static int backend_mock_init(struct driver *drv) {
return 0;
}
const struct backend backend_mock = {
.name = "Mock Backend",
.init = backend_mock_init,
};