BUG=n/a TEST=./presubmit.sh Change-Id: Ic581ebe770c648ee344cfbe20ba6655786a2088e Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/minigbm/+/5505015 Tested-by: Yiwei Zhang <zzyiwei@chromium.org> Reviewed-by: Satoshi Niwa <niwa@chromium.org> Commit-Queue: Yiwei Zhang <zzyiwei@chromium.org>
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,
|
|
};
|