From: Adrian Bunk The patch below removes an unused function from drivers/scsi/aic7xxx/aic79xx_osm.c Signed-off-by: Adrian Bunk Signed-off-by: Andrew Morton --- /dev/null | 0 25-akpm/drivers/scsi/aic7xxx/aic79xx_osm.c | 26 -------------------------- 2 files changed, 26 deletions(-) diff -puN drivers/scsi/aic7xxx/aic79xx_osm.c~scsi-aic7xxx-aic79xx_osmc-remove-an-unused-function-fwd drivers/scsi/aic7xxx/aic79xx_osm.c --- 25/drivers/scsi/aic7xxx/aic79xx_osm.c~scsi-aic7xxx-aic79xx_osmc-remove-an-unused-function-fwd Thu Dec 9 13:37:16 2004 +++ 25-akpm/drivers/scsi/aic7xxx/aic79xx_osm.c Thu Dec 9 13:37:16 2004 @@ -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_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 ahd_schedule_completeq(struct ahd_softc *ahd) { @@ -711,28 +707,6 @@ ahd_linux_unmap_scb(struct ahd_softc *ah } } -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 **************************************/ #define BUILD_SCSIID(ahd, cmd) \ ((((cmd)->device->id << TID_SHIFT) & TID) | (ahd)->our_id) diff -L drivers/scsi/aic7xxx/aic79xx_osm.c.old -puN /dev/null /dev/null _