Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 170991
b: refs/heads/master
c: 938e30c
h: refs/heads/master
i:
  170989: 6a12f75
  170987: cb01697
  170983: 4b2e75a
  170975: 20849e9
v: v3
  • Loading branch information
Luciano Coelho authored and John W. Linville committed Oct 27, 2009
1 parent a7bcc3a commit af7aeaa
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7a38079e0da19447ab1c41e42094b311c6e945e4
refs/heads/master: 938e30c9301fbd7c3677d01ad01c7eb4ad78b998
8 changes: 4 additions & 4 deletions trunk/drivers/net/wireless/wl12xx/wl1271_cmd.c
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ int wl1271_cmd_send(struct wl1271 *wl, u16 id, void *buf, size_t len)
return ret;
}

int wl1271_cmd_cal_channel_tune(struct wl1271 *wl)
static int wl1271_cmd_cal_channel_tune(struct wl1271 *wl)
{
struct wl1271_cmd_cal_channel_tune *cmd;
int ret = 0;
Expand All @@ -104,7 +104,7 @@ int wl1271_cmd_cal_channel_tune(struct wl1271 *wl)
return ret;
}

int wl1271_cmd_cal_update_ref_point(struct wl1271 *wl)
static int wl1271_cmd_cal_update_ref_point(struct wl1271 *wl)
{
struct wl1271_cmd_cal_update_ref_point *cmd;
int ret = 0;
Expand All @@ -129,7 +129,7 @@ int wl1271_cmd_cal_update_ref_point(struct wl1271 *wl)
return ret;
}

int wl1271_cmd_cal_p2g(struct wl1271 *wl)
static int wl1271_cmd_cal_p2g(struct wl1271 *wl)
{
struct wl1271_cmd_cal_p2g *cmd;
int ret = 0;
Expand All @@ -150,7 +150,7 @@ int wl1271_cmd_cal_p2g(struct wl1271 *wl)
return ret;
}

int wl1271_cmd_cal(struct wl1271 *wl)
static int wl1271_cmd_cal(struct wl1271 *wl)
{
/*
* FIXME: we must make sure that we're not sleeping when calibration
Expand Down
5 changes: 4 additions & 1 deletion trunk/drivers/net/wireless/wl12xx/wl1271_spi.c
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,9 @@ int wl1271_set_partition(struct wl1271 *wl,

#define WL1271_BUSY_WORD_TIMEOUT 1000

void wl1271_spi_read_busy(struct wl1271 *wl, void *buf, size_t len)
/* FIXME: Check busy words, removed due to SPI bug */
#if 0
static void wl1271_spi_read_busy(struct wl1271 *wl, void *buf, size_t len)
{
struct spi_transfer t[1];
struct spi_message m;
Expand Down Expand Up @@ -256,6 +258,7 @@ void wl1271_spi_read_busy(struct wl1271 *wl, void *buf, size_t len)
memset(buf, 0, len);
wl1271_error("SPI read busy-word timeout!\n");
}
#endif

void wl1271_spi_raw_read(struct wl1271 *wl, int addr, void *buf,
size_t len, bool fixed)
Expand Down

0 comments on commit af7aeaa

Please sign in to comment.