summaryrefslogtreecommitdiff
path: root/sys/dev/ic/rtwphy.h
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2004-12-29 01:02:32 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2004-12-29 01:02:32 +0000
commit30b88baa5b4a771a19cd3d99cb335b5b6f8cdd95 (patch)
treea9c549a66928f56139c310fb5d0a8821e543f77e /sys/dev/ic/rtwphy.h
parent3c7a1deced17051290ff45a9547be413f9f43340 (diff)
Driver for Realtek 802.11 devices from NetBSD.
Not yet working.
Diffstat (limited to 'sys/dev/ic/rtwphy.h')
-rw-r--r--sys/dev/ic/rtwphy.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/sys/dev/ic/rtwphy.h b/sys/dev/ic/rtwphy.h
new file mode 100644
index 00000000000..01d759f7f7d
--- /dev/null
+++ b/sys/dev/ic/rtwphy.h
@@ -0,0 +1,10 @@
+#ifndef _DEV_IC_RTWPHY_H
+#define _DEV_IC_RTWPHY_H
+
+struct rtw_rf *rtw_sa2400_create(struct rtw_regs *, rtw_rf_write_t, int);
+struct rtw_rf *rtw_max2820_create(struct rtw_regs *, rtw_rf_write_t, int);
+
+int rtw_phy_init(struct rtw_regs *, struct rtw_rf *, u_int8_t, u_int8_t, u_int,
+ int, int, enum rtw_pwrstate);
+
+#endif /* _DEV_IC_RTWPHY_H */