blob: 56e9cf95f8119ef8a477d6e8d244679dc530899a [file] [log] [blame]
// Copyright 2021 The Fuchsia Authors
//
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT
#include <zircon/assert.h>
#include <dev/init.h>
#include <phys/handoff.h>
void DriverHandoffEarly(const PhysHandoff& handoff) {
ArchUartDriverHandoffEarly(handoff.serial);
ArchDriverHandoffEarly(handoff.arch_handoff);
}
void DriverHandoffLate(const PhysHandoff& handoff) {
ArchUartDriverHandoffLate(handoff.serial);
ArchDriverHandoffLate(handoff.arch_handoff);
}