macro_rules! set_dtv_properties {
    ( $device:expr, $( $property:ident($data:expr) ),+ ) => { ... };
    ( inner $device:expr, DTV_FREQUENCY, $data:expr ) => { ... };
    ( inner $device:expr, DTV_SYMBOL_RATE, $data:expr ) => { ... };
    ( inner $device:expr, DTV_INVERSION, $data:expr ) => { ... };
    ( inner $device:expr, DTV_TRANSMISSION_MODE, $data:expr ) => { ... };
    ( inner $device:expr, DTV_GUARD_INTERVAL, $data:expr ) => { ... };
    ( inner $device:expr, DTV_HIERARCHY, $data:expr ) => { ... };
    ( inner $device:expr, DTV_STREAM_ID, $data:expr ) => { ... };
    ( inner $device:expr, $property:ident, $data:expr ) => { ... };
}