linux/drivers/staging/rtl8192e/r8190_rtl8256.h
<<
>>
Prefs
   1/* r8190_rtl8256.h - rtl8256 radio frontend
   2 *
   3 * This is part of the rtl8180-sa2400 driver
   4 * released under the GPL (See file COPYING for details).
   5 * Copyright (c) 2005 Andrea Merello <andreamrl@tiscali.it>
   6 *
   7 * Many thanks to Realtek Corp. for their great support!
   8 */
   9
  10#ifndef RTL8225_H
  11#define RTL8225_H
  12
  13#define RTL819X_TOTAL_RF_PATH 2 /* for 8192E */
  14
  15void PHY_SetRF8256Bandwidth(struct r8192_priv *priv,
  16                                   HT_CHANNEL_WIDTH Bandwidth);
  17
  18RT_STATUS PHY_RF8256_Config(struct r8192_priv *priv);
  19
  20RT_STATUS phy_RF8256_Config_ParaFile(struct r8192_priv *priv);
  21
  22void PHY_SetRF8256CCKTxPower(struct r8192_priv *priv, u8 powerlevel);
  23void PHY_SetRF8256OFDMTxPower(struct r8192_priv *priv, u8 powerlevel);
  24
  25bool MgntActSet_RF_State(struct r8192_priv *priv,
  26                         RT_RF_POWER_STATE StateToSet,
  27                         RT_RF_CHANGE_SOURCE ChangeSource);
  28
  29#endif /* RTL8225_H */
  30