patch-2.3.35 linux/include/net/irda/irport.h
Next file: linux/include/net/irda/irttp.h
Previous file: linux/include/net/irda/irlmp_frame.h
Back to the patch index
Back to the overall index
- Lines: 51
- Date:
Tue Dec 21 10:17:31 1999
- Orig file:
v2.3.34/linux/include/net/irda/irport.h
- Orig date:
Tue Nov 23 22:42:21 1999
diff -u --recursive --new-file v2.3.34/linux/include/net/irda/irport.h linux/include/net/irda/irport.h
@@ -6,7 +6,7 @@
* Status: Experimental.
* Author: Dag Brattli <dagb@cs.uit.no>
* Created at: Sun Aug 3 13:49:59 1997
- * Modified at: Sat Nov 13 23:48:55 1999
+ * Modified at: Sat Dec 11 14:34:18 1999
* Modified by: Dag Brattli <dagb@cs.uit.no>
*
* Copyright (c) 1997, 1998-1999 Dag Brattli <dagb@cs.uit.no>
@@ -54,7 +54,7 @@
struct net_device *netdev; /* Yes! we are some kind of netdevice */
struct net_device_stats stats;
- struct irlap_cb *irlap; /* The link layer we are binded to */
+ struct irlap_cb *irlap; /* The link layer we are attached to */
struct chipio_t io; /* IrDA controller information */
struct iobuff_t tx_buff; /* Transmit buffer */
@@ -65,19 +65,24 @@
__u32 flags; /* Interface flags */
__u32 new_speed;
+ int mode;
spinlock_t lock; /* For serializing operations */
- int mode;
+ /* For piggyback drivers */
+ void *priv;
+ void (*change_speed)(void *priv, __u32 speed);
+ void (*interrupt)(int irq, void *dev_id, struct pt_regs *regs);
};
-void irport_start(struct irport_cb *self, int iobase);
-void irport_stop(struct irport_cb *self, int iobase);
-int irport_probe(int iobase);
-
-int irport_change_speed(struct irda_task *task);
-void __irport_change_speed(struct irport_cb *self, __u32 speed);
+struct irport_cb *irport_open(int i, unsigned int iobase, unsigned int irq);
+int irport_close(struct irport_cb *self);
+void irport_start(struct irport_cb *self);
+void irport_stop(struct irport_cb *self);
+void irport_change_speed(void *priv, __u32 speed);
void irport_interrupt(int irq, void *dev_id, struct pt_regs *regs);
int irport_hard_xmit(struct sk_buff *skb, struct net_device *dev);
+int irport_net_open(struct net_device *dev);
+int irport_net_close(struct net_device *dev);
-#endif
+#endif /* IRPORT_H */
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)