blob: 77195b5559a1f4fc706f764810ff547930d0a4ff [file] [log] [blame]
/*
* Copyright (c) 2018 Intel Corporation.
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr.h>
#include <device.h>
#define DUMMY_PARENT_NAME "dummy_parent"
#define DUMMY_PARENT_RD 0
#define DUMMY_PARENT_WR 1
typedef int (*dummy_api_transfer_t)(struct device *dev, u32_t cmd, u32_t *val);
struct dummy_parent_api {
dummy_api_transfer_t transfer;
};