blob: 9327853958c10bba3dbdeaa70cec869196a573d0 [file] [log] [blame] [edit]
// Copyright 2022 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.
#include "composite_sample.h"
#include <lib/driver/component/cpp/driver_export.h>
namespace composite_sample {
zx::result<> CompositeSampleDriver::Start() {
FDF_SLOG(INFO, "Hello from the composite driver!");
return zx::ok();
}
} // namespace composite_sample
FUCHSIA_DRIVER_EXPORT(composite_sample::CompositeSampleDriver);