Commit 7390ebe9 authored by John Whitmore's avatar John Whitmore Committed by Greg Kroah-Hartman

staging:rtl8192u: Rename tspec_body members - Style

The member variables of the tspec_body have been renamed to clear the
checkpatch issue with CamelCase naming. As these member variables are
never used in the code the changes are combined into this single
patch.

These changes are coding style changes which should have no impact on
runtime code execution.
Signed-off-by: default avatarJohn Whitmore <johnfwhitmore@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 73b068f5
...@@ -53,21 +53,21 @@ struct qos_tsinfo { ...@@ -53,21 +53,21 @@ struct qos_tsinfo {
*/ */
struct tspec_body { struct tspec_body {
struct qos_tsinfo ts_info; //u8 TSInfo[3]; struct qos_tsinfo ts_info; //u8 TSInfo[3];
u16 NominalMSDUsize; u16 nominal_msd_usize;
u16 MaxMSDUsize; u16 max_msd_usize;
u32 MinServiceItv; u32 min_service_itv;
u32 MaxServiceItv; u32 max_service_itv;
u32 InactivityItv; u32 inactivity_itv;
u32 SuspenItv; u32 suspen_itv;
u32 ServiceStartTime; u32 service_start_time;
u32 MinDataRate; u32 min_data_rate;
u32 MeanDataRate; u32 mean_data_rate;
u32 PeakDataRate; u32 peak_data_rate;
u32 MaxBurstSize; u32 max_burst_size;
u32 DelayBound; u32 delay_bound;
u32 MinPhyRate; u32 min_phy_rate;
u16 SurplusBandwidthAllowance; u16 surplus_bandwidth_allowance;
u16 MediumTime; u16 medium_time;
}; };
//typedef struct _TCLASS{ //typedef struct _TCLASS{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment