Deleted Added
full compact
if_wpireg.h (173362) if_wpireg.h (173976)
1/* $FreeBSD: head/sys/dev/wpi/if_wpireg.h 173362 2007-11-05 11:47:19Z benjsc $ */
1/* $FreeBSD: head/sys/dev/wpi/if_wpireg.h 173976 2007-11-27 08:58:32Z benjsc $ */
2
3/*-
4 * Copyright (c) 2006,2007
5 * Damien Bergamini <damien.bergamini@free.fr>
6 *
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.

--- 188 unchanged lines hidden (view full) ---

198 uint32_t len;
199 uint8_t type;
200#define WPI_UC_READY 1
201#define WPI_RX_DONE 27
202#define WPI_TX_DONE 28
203#define WPI_START_SCAN 130
204#define WPI_STOP_SCAN 132
205#define WPI_STATE_CHANGED 161
2
3/*-
4 * Copyright (c) 2006,2007
5 * Damien Bergamini <damien.bergamini@free.fr>
6 *
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.

--- 188 unchanged lines hidden (view full) ---

198 uint32_t len;
199 uint8_t type;
200#define WPI_UC_READY 1
201#define WPI_RX_DONE 27
202#define WPI_TX_DONE 28
203#define WPI_START_SCAN 130
204#define WPI_STOP_SCAN 132
205#define WPI_STATE_CHANGED 161
206#define WPI_MISSED_BEACON 162
206
207 uint8_t flags;
208 uint8_t idx;
209 uint8_t qid;
210} __packed;
211
212struct wpi_rx_stat {
213 uint8_t len;

--- 201 unchanged lines hidden (view full) ---

415 uint8_t cck_mask;
416 uint16_t reserved3[3];
417 uint16_t tim;
418 uint8_t timsz;
419 uint8_t reserved4;
420 struct ieee80211_frame wh;
421} __packed;
422
207
208 uint8_t flags;
209 uint8_t idx;
210 uint8_t qid;
211} __packed;
212
213struct wpi_rx_stat {
214 uint8_t len;

--- 201 unchanged lines hidden (view full) ---

416 uint8_t cck_mask;
417 uint16_t reserved3[3];
418 uint16_t tim;
419 uint8_t timsz;
420 uint8_t reserved4;
421 struct ieee80211_frame wh;
422} __packed;
423
424/* structure for notification WPI_MISSED_BEACON */
425struct wpi_missed_beacon {
426 uint32_t consecutive;
427 uint32_t total;
428 uint32_t expected;
429 uint32_t received;
430} __packed;
431
432
423/* structure for WPI_CMD_MRR_SETUP */
424struct wpi_mrr_setup {
425 uint8_t which;
426#define WPI_MRR_CTL 0
427#define WPI_MRR_DATA 1
428
429 uint8_t reserved[3];
430

--- 297 unchanged lines hidden ---
433/* structure for WPI_CMD_MRR_SETUP */
434struct wpi_mrr_setup {
435 uint8_t which;
436#define WPI_MRR_CTL 0
437#define WPI_MRR_DATA 1
438
439 uint8_t reserved[3];
440

--- 297 unchanged lines hidden ---