Deleted Added
sdiff udiff text old ( 185380 ) new ( 185406 )
full compact
1/*
2 * Copyright (c) 2002-2008 Sam Leffler, Errno Consulting
3 * Copyright (c) 2002-2008 Atheros Communications, Inc.
4 *
5 * Permission to use, copy, modify, and/or distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *

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

78 HAL_TP_SCALE_MIN = 4, /* min, but still on */
79} HAL_TP_SCALE;
80
81typedef enum {
82 HAL_CAP_RADAR = 0, /* Radar capability */
83 HAL_CAP_AR = 1, /* AR capability */
84} HAL_PHYDIAG_CAPS;
85
86
87/*
88 * Internal form of a HAL_CHANNEL. Note that the structure
89 * must be defined such that you can cast references to a
90 * HAL_CHANNEL so don't shuffle the first two members.
91 */
92typedef struct {
93 uint32_t channelFlags;
94 uint16_t channel; /* NB: must be first for casting */
95 uint8_t privFlags;

--- 669 unchanged lines hidden ---