mirror of
https://github.com/danog/libdvb.git
synced 2024-11-26 20:04:39 +01:00
move sys::* to separate modules
This commit is contained in:
parent
7843edb216
commit
cfa179f674
@ -2,6 +2,7 @@ mod asn1;
|
||||
mod tpdu;
|
||||
mod spdu;
|
||||
mod apdu;
|
||||
mod sys;
|
||||
|
||||
|
||||
use {
|
||||
@ -26,13 +27,12 @@ use {
|
||||
Context,
|
||||
},
|
||||
|
||||
crate::{
|
||||
sys::{
|
||||
ioctl,
|
||||
IoctlInt,
|
||||
ca::*,
|
||||
},
|
||||
crate::ioctl::{
|
||||
ioctl,
|
||||
IoctlInt,
|
||||
},
|
||||
|
||||
sys::*,
|
||||
};
|
||||
|
||||
|
||||
|
@ -3,7 +3,7 @@ use {
|
||||
mem,
|
||||
},
|
||||
|
||||
super::{
|
||||
crate::ioctl::{
|
||||
IoctlInt,
|
||||
io_none,
|
||||
io_read,
|
1
src/dmx/mod.rs
Normal file
1
src/dmx/mod.rs
Normal file
@ -0,0 +1 @@
|
||||
mod sys;
|
@ -1,5 +1,5 @@
|
||||
use {
|
||||
super::{
|
||||
crate::ioctl::{
|
||||
IoctlInt,
|
||||
io_none,
|
||||
io_write,
|
@ -1,4 +1,5 @@
|
||||
mod status;
|
||||
mod sys;
|
||||
|
||||
|
||||
use {
|
||||
@ -32,13 +33,12 @@ use {
|
||||
libc,
|
||||
thiserror::Error,
|
||||
|
||||
crate::{
|
||||
sys::{
|
||||
ioctl,
|
||||
IoctlInt,
|
||||
frontend::*,
|
||||
},
|
||||
crate::ioctl::{
|
||||
ioctl,
|
||||
IoctlInt,
|
||||
},
|
||||
|
||||
sys::*,
|
||||
};
|
||||
|
||||
|
||||
|
@ -3,9 +3,9 @@ use {
|
||||
|
||||
anyhow::Result,
|
||||
|
||||
crate::{
|
||||
sys::frontend::*,
|
||||
super::{
|
||||
FeDevice,
|
||||
sys::*,
|
||||
},
|
||||
};
|
||||
|
||||
|
@ -6,7 +6,7 @@ use {
|
||||
|
||||
libc,
|
||||
|
||||
super::{
|
||||
crate::ioctl::{
|
||||
IoctlInt,
|
||||
io_none,
|
||||
io_read,
|
@ -2,9 +2,11 @@
|
||||
extern crate anyhow;
|
||||
|
||||
|
||||
pub mod sys;
|
||||
pub mod ioctl;
|
||||
|
||||
mod ca;
|
||||
mod fe;
|
||||
mod dmx;
|
||||
|
||||
|
||||
pub use {
|
||||
|
@ -1,13 +0,0 @@
|
||||
mod ioctl;
|
||||
pub use ioctl::{
|
||||
IoctlInt,
|
||||
ioctl,
|
||||
io_none,
|
||||
io_read,
|
||||
io_write,
|
||||
io_rw,
|
||||
};
|
||||
|
||||
pub mod ca;
|
||||
pub mod dmx;
|
||||
pub mod frontend;
|
Loading…
Reference in New Issue
Block a user