Skip to main content

osiris/uapi/
i2c.rs

1use crate::drivers::i2c::*;
2use crate::error::Result;
3
4pub fn open(compatible: &str, ordinal: usize) -> Result<Device> {
5    Device::open(compatible, ordinal)
6}