net: mscc: ocelot: use skb queue instead of skbs list
[sfrench/cifs-2.6.git] / include / soc / mscc / ocelot.h
index e1108a5f4f17b9a6f1f2777ab0e01ae9b2a5ac65..64cbbbe74a36173bded9ee8dc827c57b53803460 100644 (file)
@@ -406,13 +406,6 @@ struct ocelot_ops {
        int (*reset)(struct ocelot *ocelot);
 };
 
-struct ocelot_skb {
-       struct list_head head;
-       struct sk_buff *skb;
-       u8 id;
-};
-
-
 struct ocelot_port {
        struct ocelot                   *ocelot;
 
@@ -425,7 +418,7 @@ struct ocelot_port {
        u16                             vid;
 
        u8                              ptp_cmd;
-       struct list_head                skbs;
+       struct sk_buff_head             tx_skbs;
        u8                              ts_id;
 };