Skip to content

Commit

Permalink
pdc_adma: kill adma_host_stop()
Browse files Browse the repository at this point in the history
adma_host_stop() does the same thing that adma_port_stop() does.  Kill
it.

Signed-off-by: Tejun Heo <htejun@gmail.com>
Cc: Mark Lord <liml@rtr.ca>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
  • Loading branch information
Tejun Heo authored and Jeff Garzik committed Apr 17, 2008
1 parent b0316b1 commit fc4712d
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions drivers/ata/pdc_adma.c
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ struct adma_port_priv {
static int adma_ata_init_one(struct pci_dev *pdev,
const struct pci_device_id *ent);
static int adma_port_start(struct ata_port *ap);
static void adma_host_stop(struct ata_host *host);
static void adma_port_stop(struct ata_port *ap);
static void adma_qc_prep(struct ata_queued_cmd *qc);
static unsigned int adma_qc_issue(struct ata_queued_cmd *qc);
Expand Down Expand Up @@ -159,7 +158,6 @@ static struct ata_port_operations adma_ata_ops = {

.port_start = adma_port_start,
.port_stop = adma_port_stop,
.host_stop = adma_host_stop,
};

static struct ata_port_info adma_port_info[] = {
Expand Down Expand Up @@ -591,14 +589,6 @@ static void adma_port_stop(struct ata_port *ap)
adma_reset_engine(ap);
}

static void adma_host_stop(struct ata_host *host)
{
unsigned int port_no;

for (port_no = 0; port_no < ADMA_PORTS; ++port_no)
adma_reset_engine(host->ports[port_no]);
}

static void adma_host_init(struct ata_host *host, unsigned int chip_id)
{
unsigned int port_no;
Expand Down

0 comments on commit fc4712d

Please sign in to comment.