// SPDX-FileCopyrightText: 2021 Kent Gibson <warthog618@gmail.com>
//
// SPDX-License-Identifier: Apache-2.0 OR MIT
//! A thin but safe Rust layer around the Linux GPIO uAPI.
pub
// move ops into v1/v2??
pub use ;
/// This module implements GPIO ABI v1 which was released in Linux v4.8.
///
/// This ABI version is deprecated.
///
/// ABI v2 adds features and overcomes a number of bugs and limitations present in v1.
/// Use ABI v2 instead where possible.
/// This module implements GPIO ABI v2 which is the current version of the ABI,
/// released in Linux v5.10.