ipw2200: constify address in ipw_send_adapter_address
Add const to the address param of ipw_send_adapter_address() all the functions down the chain have already been changed. Not sure how I lost this in the rebase. Acked-by: Kalle Valo <kvalo@codeaurora.org> Signed-off-by: Jakub Kicinski <kuba@kernel.org> Acked-by: Stanislav Yakovlev <stas.yakovlev@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
b09d58025e
commit
a608e6794b
|
@ -2303,7 +2303,7 @@ static int ipw_send_ssid(struct ipw_priv *priv, u8 * ssid, int len)
|
|||
ssid);
|
||||
}
|
||||
|
||||
static int ipw_send_adapter_address(struct ipw_priv *priv, u8 * mac)
|
||||
static int ipw_send_adapter_address(struct ipw_priv *priv, const u8 * mac)
|
||||
{
|
||||
if (!priv || !mac) {
|
||||
IPW_ERROR("Invalid args\n");
|
||||
|
|
Loading…
Reference in New Issue