Subversion Repositories HelenOS

Rev

Rev 3912 | Rev 4192 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3912 Rev 4163
Line 83... Line 83...
83
     */
83
     */
84
    device_stats_t  stats;
84
    device_stats_t  stats;
85
    /** Actual device state.
85
    /** Actual device state.
86
     */
86
     */
87
    device_state_t  state;
87
    device_state_t  state;
88
//  TODO needed?
-
 
89
    /** Various device flags.
-
 
90
     */
-
 
91
    int     flags;
-
 
92
    /** Maximum transmission unit.
-
 
93
     *  The maximum packet content to be transmited.
-
 
94
     */
-
 
95
    size_t      mtu;
-
 
96
    /** Driver specific data.
88
    /** Driver specific data.
97
     */
89
     */
98
    void *      specific;
90
    void *      specific;
99
};
91
};
100
 
92