Commit 0a621e9b authored by Adrian Bunk's avatar Adrian Bunk Committed by Linus Torvalds

[PATCH] scsi/aic7xxx/aic79xx_osm.c: remove an unused function

The patch below removes an unused function from 
drivers/scsi/aic7xxx/aic79xx_osm.c
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 613240c9
...@@ -549,10 +549,6 @@ static __inline struct ahd_linux_device * ...@@ -549,10 +549,6 @@ static __inline struct ahd_linux_device *
static __inline void ahd_linux_run_device_queues(struct ahd_softc *ahd); static __inline void ahd_linux_run_device_queues(struct ahd_softc *ahd);
static __inline void ahd_linux_unmap_scb(struct ahd_softc*, struct scb*); static __inline void ahd_linux_unmap_scb(struct ahd_softc*, struct scb*);
static __inline int ahd_linux_map_seg(struct ahd_softc *ahd, struct scb *scb,
struct ahd_dma_seg *sg,
dma_addr_t addr, bus_size_t len);
static __inline void static __inline void
ahd_schedule_completeq(struct ahd_softc *ahd) ahd_schedule_completeq(struct ahd_softc *ahd)
{ {
...@@ -711,28 +707,6 @@ ahd_linux_unmap_scb(struct ahd_softc *ahd, struct scb *scb) ...@@ -711,28 +707,6 @@ ahd_linux_unmap_scb(struct ahd_softc *ahd, struct scb *scb)
} }
} }
static __inline int
ahd_linux_map_seg(struct ahd_softc *ahd, struct scb *scb,
struct ahd_dma_seg *sg, dma_addr_t addr, bus_size_t len)
{
int consumed;
if ((scb->sg_count + 1) > AHD_NSEG)
panic("Too few segs for dma mapping. "
"Increase AHD_NSEG\n");
consumed = 1;
sg->addr = ahd_htole32(addr & 0xFFFFFFFF);
scb->platform_data->xfer_len += len;
if (sizeof(dma_addr_t) > 4
&& (ahd->flags & AHD_39BIT_ADDRESSING) != 0)
len |= (addr >> 8) & AHD_SG_HIGH_ADDR_MASK;
sg->len = ahd_htole32(len);
return (consumed);
}
/******************************** Macros **************************************/ /******************************** Macros **************************************/
#define BUILD_SCSIID(ahd, cmd) \ #define BUILD_SCSIID(ahd, cmd) \
((((cmd)->device->id << TID_SHIFT) & TID) | (ahd)->our_id) ((((cmd)->device->id << TID_SHIFT) & TID) | (ahd)->our_id)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment