diff options
author | Damien Bergamini <damien@cvs.openbsd.org> | 2009-02-15 08:58:23 +0000 |
---|---|---|
committer | Damien Bergamini <damien@cvs.openbsd.org> | 2009-02-15 08:58:23 +0000 |
commit | 6b3508dfb6d818fe42eaa123f8c68562a9713619 (patch) | |
tree | 2441537a4516c75942819e5d3c6dad646fc2373b /sys/dev/pci/if_iwnvar.h | |
parent | c1f22d4e90b417b596eb9b56a562cfa40d477496 (diff) |
attach the Intel WiFi Link 100 and 6000 Series (though no firmware
is available yet.)
branch the ampdu_{tx,rx}_{start,stop} callbacks too.
remove code that is only needed for evaluation/test boards.
Diffstat (limited to 'sys/dev/pci/if_iwnvar.h')
-rw-r--r-- | sys/dev/pci/if_iwnvar.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/pci/if_iwnvar.h b/sys/dev/pci/if_iwnvar.h index 3cd907433e5..1fef43daddc 100644 --- a/sys/dev/pci/if_iwnvar.h +++ b/sys/dev/pci/if_iwnvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_iwnvar.h,v 1.8 2008/12/03 17:17:08 damien Exp $ */ +/* $OpenBSD: if_iwnvar.h,v 1.9 2009/02/15 08:58:22 damien Exp $ */ /*- * Copyright (c) 2007, 2008 @@ -182,10 +182,12 @@ struct iwn_hal { int (*add_node)(struct iwn_softc *, struct iwn_node_info *, int); void (*tx_done)(struct iwn_softc *, struct iwn_rx_desc *); +#ifndef IEEE80211_NO_HT void (*ampdu_tx_start)(struct iwn_softc *, struct ieee80211_node *, uint8_t, uint16_t); void (*ampdu_tx_stop)(struct iwn_softc *, uint8_t, uint16_t); +#endif const struct iwn_sensitivity_limits *limits; int ntxqs; uint8_t broadcast_id; |