Skip to content

Commit

Permalink
wl1271: Added functions to enable/disable interrupt handling
Browse files Browse the repository at this point in the history
Added/moved enable and disable interrupt handling functions.

Signed-off-by: Teemu Paasikivi <ext-teemu.3.paasikivi@nokia.com>
Reviewed-by: Juuso Oikarinen <juuso.oikarinen@nokia.com>
Signed-off-by: Juuso Oikarinen <juuso.oikarinen@nokia.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Teemu Paasikivi authored and John W. Linville committed Mar 9, 2010
1 parent 2d5e82b commit 54f7e50
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 6 deletions.
2 changes: 1 addition & 1 deletion drivers/net/wireless/wl12xx/wl1271_boot.c
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ static int wl1271_boot_upload_nvs(struct wl1271 *wl)

static void wl1271_boot_enable_interrupts(struct wl1271 *wl)
{
enable_irq(wl->irq);
wl1271_enable_interrupts(wl);
wl1271_write32(wl, ACX_REG_INTERRUPT_MASK,
WL1271_ACX_INTR_ALL & ~(WL1271_INTR_MASK));
wl1271_write32(wl, HI_CFG, HI_CFG_DEF_VAL);
Expand Down
10 changes: 10 additions & 0 deletions drivers/net/wireless/wl12xx/wl1271_io.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,16 @@
#include "wl1271_spi.h"
#include "wl1271_io.h"

void wl1271_disable_interrupts(struct wl1271 *wl)
{
wl1271_spi_disable_interrupts(wl);
}

void wl1271_enable_interrupts(struct wl1271 *wl)
{
wl1271_spi_enable_interrupts(wl);
}

static int wl1271_translate_addr(struct wl1271 *wl, int addr)
{
/*
Expand Down
3 changes: 3 additions & 0 deletions drivers/net/wireless/wl12xx/wl1271_io.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@

struct wl1271;

void wl1271_disable_interrupts(struct wl1271 *wl);
void wl1271_enable_interrupts(struct wl1271 *wl);

void wl1271_io_reset(struct wl1271 *wl);
void wl1271_io_init(struct wl1271 *wl);

Expand Down
5 changes: 0 additions & 5 deletions drivers/net/wireless/wl12xx/wl1271_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -360,11 +360,6 @@ static int wl1271_plt_init(struct wl1271 *wl)
return ret;
}

static void wl1271_disable_interrupts(struct wl1271 *wl)
{
disable_irq(wl->irq);
}

static void wl1271_power_off(struct wl1271 *wl)
{
wl->set_power(false);
Expand Down
10 changes: 10 additions & 0 deletions drivers/net/wireless/wl12xx/wl1271_spi.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,16 @@
#include "wl1271_io.h"


void wl1271_spi_disable_interrupts(struct wl1271 *wl)
{
disable_irq(wl->irq);
}

void wl1271_spi_enable_interrupts(struct wl1271 *wl)
{
enable_irq(wl->irq);
}

void wl1271_spi_reset(struct wl1271 *wl)
{
u8 *cmd;
Expand Down
3 changes: 3 additions & 0 deletions drivers/net/wireless/wl12xx/wl1271_spi.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@
#define OCP_STATUS_REQ_FAILED 0x20000
#define OCP_STATUS_RESP_ERROR 0x30000

void wl1271_spi_disable_interrupts(struct wl1271 *wl);
void wl1271_spi_enable_interrupts(struct wl1271 *wl);

/* Raw target IO, address is not translated */
void wl1271_spi_raw_write(struct wl1271 *wl, int addr, void *buf,
size_t len, bool fixed);
Expand Down

0 comments on commit 54f7e50

Please sign in to comment.