hal_com_phycfg.c 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /******************************************************************************
  2. *
  3. * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of version 2 of the GNU General Public License as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along with
  15. * this program; if not, write to the Free Software Foundation, Inc.,
  16. * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
  17. *
  18. *
  19. ******************************************************************************/
  20. #define _HAL_COM_PHYCFG_C_
  21. #include <drv_types.h>
  22. #ifndef CONFIG_EMBEDDED_FWIMG
  23. int
  24. phy_ConfigMACWithParaFile(
  25. IN PADAPTER Adapter,
  26. IN u8* pFileName
  27. )
  28. {
  29. int rtStatus = _FAIL;
  30. return rtStatus;
  31. }
  32. int
  33. PHY_ConfigBBWithPowerLimitTableParaFile(
  34. IN PADAPTER Adapter,
  35. IN s8* pFileName
  36. )
  37. {
  38. int rtStatus = _SUCCESS;
  39. return rtStatus;
  40. }
  41. int
  42. phy_ConfigBBWithParaFile(
  43. IN PADAPTER Adapter,
  44. IN u8* pFileName
  45. )
  46. {
  47. int rtStatus = _SUCCESS;
  48. return rtStatus;
  49. }
  50. int
  51. phy_ConfigBBWithPgParaFile(
  52. IN PADAPTER Adapter,
  53. IN u8* pFileName)
  54. {
  55. int rtStatus = _SUCCESS;
  56. return rtStatus;
  57. }
  58. int
  59. phy_ConfigBBWithMpParaFile(
  60. IN PADAPTER Adapter,
  61. IN u8* pFileName
  62. )
  63. {
  64. int rtStatus = _SUCCESS;
  65. return rtStatus;
  66. }
  67. int
  68. PHY_ConfigRFWithParaFile(
  69. IN PADAPTER Adapter,
  70. IN u8* pFileName,
  71. IN u8 eRFPath
  72. )
  73. {
  74. int rtStatus = _SUCCESS;
  75. return rtStatus;
  76. }
  77. int
  78. PHY_ConfigRFWithTxPwrTrackParaFile(
  79. IN PADAPTER Adapter,
  80. IN u8* pFileName
  81. )
  82. {
  83. int rtStatus = _SUCCESS;
  84. return rtStatus;
  85. }
  86. #endif