blob: 6e4304375cfe859248eede30fea580eff4516f1c [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SRC_VIRTUALIZATION_BIN_VMM_PLATFORM_DEVICE_H_
#define SRC_VIRTUALIZATION_BIN_VMM_PLATFORM_DEVICE_H_
#include <zircon/types.h>
class PlatformDevice {
public:
virtual ~PlatformDevice() = default;
virtual zx_status_t ConfigureZbi(void *zbi_base, size_t zbi_max) const { return ZX_OK; }
virtual zx_status_t ConfigureDtb(void *dtb) const { return ZX_OK; }
};
#endif // SRC_VIRTUALIZATION_BIN_VMM_PLATFORM_DEVICE_H_