Skip to content

Commit

Permalink
prism54: remove private implementation of le32_add_cpu
Browse files Browse the repository at this point in the history
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
hharrison authored and linvjw committed Jan 29, 2009
1 parent a1d8821 commit c95741d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
5 changes: 3 additions & 2 deletions drivers/net/wireless/prism54/islpci_eth.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/if_arp.h>
#include <asm/byteorder.h>

#include "prismcompat.h"
#include "isl_38xx.h"
Expand Down Expand Up @@ -471,8 +472,8 @@ islpci_eth_receive(islpci_private *priv)
wmb();

/* increment the driver read pointer */
add_le32p(&control_block->
driver_curr_frag[ISL38XX_CB_RX_DATA_LQ], 1);
le32_add_cpu(&control_block->
driver_curr_frag[ISL38XX_CB_RX_DATA_LQ], 1);
}

/* trigger the device */
Expand Down
6 changes: 0 additions & 6 deletions drivers/net/wireless/prism54/islpci_mgt.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,6 @@ extern int pc_debug;
#define PIMFOR_FLAG_APPLIC_ORIGIN 0x01
#define PIMFOR_FLAG_LITTLE_ENDIAN 0x02

static inline void
add_le32p(__le32 * le_number, u32 add)
{
*le_number = cpu_to_le32(le32_to_cpup(le_number) + add);
}

void display_buffer(char *, int);

/*
Expand Down

0 comments on commit c95741d

Please sign in to comment.