This reverts commit b7a9a2b7d5.
Reason for revert: Crash resolved by Ieb07b5bbc206f07f69e4afba921149f49d6fe8c4
Bug: 349870098
Change-Id: I49848f6e7311c1f44e6c988cb42107ed79da3a6b
17 lines
358 B
C
17 lines
358 B
C
/*
|
|
* 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,
|
|
};
|