blob: 5fda9ded4ce63c5451dd94fcff43437b488555cf [file] [log] [blame]
// 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: [
'syslog/client.shard.cml',
],
program: {
runner: 'driver',
binary: 'lib/libacpi_multiply.so',
bind: 'meta/bind/acpi_multiply.bindbc'
},
// Consume the ACPI device capability from the parent
use: [
{ protocol: 'fuchsia.hardware.acpi.Device' },
{ service: 'fuchsia.driver.compat.Service' },
],
// Provide the multiply device capability to other components
capabilities: [
{ protocol: 'sample.acpi.multiply.Device' },
],
expose: [
{
protocol: 'sample.acpi.multiply.Device',
from: 'self',
},
],
}