|
@@ -29,6 +29,7 @@
|
|
|
#include <linux/device.h>
|
|
|
#include <linux/export.h>
|
|
|
|
|
|
+#include "iwl-drv.h"
|
|
|
#include "iwl-io.h"
|
|
|
#include "iwl-csr.h"
|
|
|
#include "iwl-debug.h"
|
|
@@ -49,7 +50,7 @@ int iwl_poll_bit(struct iwl_trans *trans, u32 addr,
|
|
|
|
|
|
return -ETIMEDOUT;
|
|
|
}
|
|
|
-EXPORT_SYMBOL_GPL(iwl_poll_bit);
|
|
|
+IWL_EXPORT_SYMBOL(iwl_poll_bit);
|
|
|
|
|
|
u32 iwl_read_direct32(struct iwl_trans *trans, u32 reg)
|
|
|
{
|
|
@@ -62,7 +63,7 @@ u32 iwl_read_direct32(struct iwl_trans *trans, u32 reg)
|
|
|
|
|
|
return value;
|
|
|
}
|
|
|
-EXPORT_SYMBOL_GPL(iwl_read_direct32);
|
|
|
+IWL_EXPORT_SYMBOL(iwl_read_direct32);
|
|
|
|
|
|
void iwl_write_direct32(struct iwl_trans *trans, u32 reg, u32 value)
|
|
|
{
|
|
@@ -73,7 +74,7 @@ void iwl_write_direct32(struct iwl_trans *trans, u32 reg, u32 value)
|
|
|
iwl_trans_release_nic_access(trans, &flags);
|
|
|
}
|
|
|
}
|
|
|
-EXPORT_SYMBOL_GPL(iwl_write_direct32);
|
|
|
+IWL_EXPORT_SYMBOL(iwl_write_direct32);
|
|
|
|
|
|
int iwl_poll_direct_bit(struct iwl_trans *trans, u32 addr, u32 mask,
|
|
|
int timeout)
|
|
@@ -89,7 +90,7 @@ int iwl_poll_direct_bit(struct iwl_trans *trans, u32 addr, u32 mask,
|
|
|
|
|
|
return -ETIMEDOUT;
|
|
|
}
|
|
|
-EXPORT_SYMBOL_GPL(iwl_poll_direct_bit);
|
|
|
+IWL_EXPORT_SYMBOL(iwl_poll_direct_bit);
|
|
|
|
|
|
static inline u32 __iwl_read_prph(struct iwl_trans *trans, u32 ofs)
|
|
|
{
|
|
@@ -115,7 +116,7 @@ u32 iwl_read_prph(struct iwl_trans *trans, u32 ofs)
|
|
|
}
|
|
|
return val;
|
|
|
}
|
|
|
-EXPORT_SYMBOL_GPL(iwl_read_prph);
|
|
|
+IWL_EXPORT_SYMBOL(iwl_read_prph);
|
|
|
|
|
|
void iwl_write_prph(struct iwl_trans *trans, u32 ofs, u32 val)
|
|
|
{
|
|
@@ -126,7 +127,7 @@ void iwl_write_prph(struct iwl_trans *trans, u32 ofs, u32 val)
|
|
|
iwl_trans_release_nic_access(trans, &flags);
|
|
|
}
|
|
|
}
|
|
|
-EXPORT_SYMBOL_GPL(iwl_write_prph);
|
|
|
+IWL_EXPORT_SYMBOL(iwl_write_prph);
|
|
|
|
|
|
void iwl_set_bits_prph(struct iwl_trans *trans, u32 ofs, u32 mask)
|
|
|
{
|
|
@@ -138,7 +139,7 @@ void iwl_set_bits_prph(struct iwl_trans *trans, u32 ofs, u32 mask)
|
|
|
iwl_trans_release_nic_access(trans, &flags);
|
|
|
}
|
|
|
}
|
|
|
-EXPORT_SYMBOL_GPL(iwl_set_bits_prph);
|
|
|
+IWL_EXPORT_SYMBOL(iwl_set_bits_prph);
|
|
|
|
|
|
void iwl_set_bits_mask_prph(struct iwl_trans *trans, u32 ofs,
|
|
|
u32 bits, u32 mask)
|
|
@@ -151,7 +152,7 @@ void iwl_set_bits_mask_prph(struct iwl_trans *trans, u32 ofs,
|
|
|
iwl_trans_release_nic_access(trans, &flags);
|
|
|
}
|
|
|
}
|
|
|
-EXPORT_SYMBOL_GPL(iwl_set_bits_mask_prph);
|
|
|
+IWL_EXPORT_SYMBOL(iwl_set_bits_mask_prph);
|
|
|
|
|
|
void iwl_clear_bits_prph(struct iwl_trans *trans, u32 ofs, u32 mask)
|
|
|
{
|
|
@@ -164,4 +165,4 @@ void iwl_clear_bits_prph(struct iwl_trans *trans, u32 ofs, u32 mask)
|
|
|
iwl_trans_release_nic_access(trans, &flags);
|
|
|
}
|
|
|
}
|
|
|
-EXPORT_SYMBOL_GPL(iwl_clear_bits_prph);
|
|
|
+IWL_EXPORT_SYMBOL(iwl_clear_bits_prph);
|