blob: d2b36e4620775376aef7b0ba0275cba2f5c9ba85 [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: 'driver/libi2c_controller.so',
bind: 'meta/bind/i2c_controller.bindbc',
// Identifies the device categories, for compatibility tests.
device_categories: [
{ category: 'board', subcategory: 'i2c' },
],
},
// Provide the I2C service capability to other components
capabilities: [
{
service: [
'fuchsia.hardware.i2c.Service',
],
},
],
expose: [
{
service: [
'fuchsia.hardware.i2c.Service',
],
from: 'self',
},
],
}