Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 46576
b: refs/heads/master
c: a7bed27
h: refs/heads/master
v: v3
  • Loading branch information
Al Viro authored and Jeff Garzik committed Feb 7, 2007
1 parent 8ed4157 commit 5e8ff71
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 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: f5cd7872768d5856b1b409a33f516e5ac7798f75
refs/heads/master: a7bed27dc69e3bc9238549a4964ea94ec318362c
8 changes: 4 additions & 4 deletions trunk/drivers/net/b44.c
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,7 @@ static void b44_recycle_rx(struct b44 *bp, int src_idx, u32 dest_idx_unmasked)
struct ring_info *src_map, *dest_map;
struct rx_header *rh;
int dest_idx;
u32 ctrl;
__le32 ctrl;

dest_idx = dest_idx_unmasked & (B44_RX_RING_SIZE - 1);
dest_desc = &bp->rx_ring[dest_idx];
Expand Down Expand Up @@ -783,7 +783,7 @@ static int b44_rx(struct b44 *bp, int budget)
RX_PKT_BUF_SZ,
PCI_DMA_FROMDEVICE);
rh = (struct rx_header *) skb->data;
len = cpu_to_le16(rh->len);
len = le16_to_cpu(rh->len);
if ((len > (RX_PKT_BUF_SZ - bp->rx_offset)) ||
(rh->flags & cpu_to_le16(RX_FLAG_ERRORS))) {
drop_it:
Expand All @@ -799,7 +799,7 @@ static int b44_rx(struct b44 *bp, int budget)
do {
udelay(2);
barrier();
len = cpu_to_le16(rh->len);
len = le16_to_cpu(rh->len);
} while (len == 0 && i++ < 5);
if (len == 0)
goto drop_it;
Expand Down Expand Up @@ -2061,7 +2061,7 @@ static int b44_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
static int b44_read_eeprom(struct b44 *bp, u8 *data)
{
long i;
u16 *ptr = (u16 *) data;
__le16 *ptr = (__le16 *) data;

for (i = 0; i < 128; i += 2)
ptr[i / 2] = cpu_to_le16(readw(bp->regs + 4096 + i));
Expand Down
10 changes: 5 additions & 5 deletions trunk/drivers/net/b44.h
Original file line number Diff line number Diff line change
Expand Up @@ -308,8 +308,8 @@
#define MII_TLEDCTRL_ENABLE 0x0040

struct dma_desc {
u32 ctrl;
u32 addr;
__le32 ctrl;
__le32 addr;
};

/* There are only 12 bits in the DMA engine for descriptor offsetting
Expand All @@ -327,9 +327,9 @@ struct dma_desc {
#define RX_COPY_THRESHOLD 256

struct rx_header {
u16 len;
u16 flags;
u16 pad[12];
__le16 len;
__le16 flags;
__le16 pad[12];
};
#define RX_HEADER_LEN 28

Expand Down

0 comments on commit 5e8ff71

Please sign in to comment.