Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 73048
b: refs/heads/master
c: 520d3a1
h: refs/heads/master
v: v3
  • Loading branch information
Li Yang authored and Jeff Garzik committed Nov 3, 2007
1 parent 7281063 commit 962d6c6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 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: 066ce4db07fd547c40e57cd8a0f853124b1687aa
refs/heads/master: 520d3a1a8cb3eb8794e3dbb822dbc40c20f18e52
12 changes: 6 additions & 6 deletions trunk/drivers/ata/sata_fsl.c
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ struct sata_fsl_host_priv {
};

static inline unsigned int sata_fsl_tag(unsigned int tag,
void __iomem * hcr_base)
void __iomem *hcr_base)
{
/* We let libATA core do actual (queue) tag allocation */

Expand Down Expand Up @@ -308,7 +308,7 @@ static void sata_fsl_setup_cmd_hdr_entry(struct sata_fsl_port_priv *pp,
pp->cmdslot[tag].prde_fis_len =
cpu_to_le32((num_prde << 16) | (fis_len << 2));
pp->cmdslot[tag].ttl = cpu_to_le32(data_xfer_len & ~0x03);
pp->cmdslot[tag].desc_info = cpu_to_le32((desc_info | (tag & 0x1F)));
pp->cmdslot[tag].desc_info = cpu_to_le32(desc_info | (tag & 0x1F));

VPRINTK("cda=0x%x, prde_fis_len=0x%x, ttl=0x%x, di=0x%x\n",
pp->cmdslot[tag].cda,
Expand All @@ -318,7 +318,7 @@ static void sata_fsl_setup_cmd_hdr_entry(struct sata_fsl_port_priv *pp,
}

static unsigned int sata_fsl_fill_sg(struct ata_queued_cmd *qc, void *cmd_desc,
u32 * ttl, dma_addr_t cmd_desc_paddr)
u32 *ttl, dma_addr_t cmd_desc_paddr)
{
struct scatterlist *sg;
unsigned int num_prde = 0;
Expand Down Expand Up @@ -406,7 +406,7 @@ static void sata_fsl_qc_prep(struct ata_queued_cmd *qc)
cd = (struct command_desc *)pp->cmdentry + tag;
cd_paddr = pp->cmdentry_paddr + tag * SATA_FSL_CMD_DESC_SIZE;

ata_tf_to_fis(&qc->tf, 0, 1, (u8 *) & cd->cfis);
ata_tf_to_fis(&qc->tf, 0, 1, (u8 *) &cd->cfis);

VPRINTK("Dumping cfis : 0x%x, 0x%x, 0x%x\n",
cd->cfis[0], cd->cfis[1], cd->cfis[2]);
Expand Down Expand Up @@ -837,7 +837,7 @@ static int sata_fsl_softreset(struct ata_link *link, unsigned int *class,
DPRINTK("Sending SRST/device reset\n");

ata_tf_init(link->device, &tf);
cfis = (u8 *) & pp->cmdentry->cfis;
cfis = (u8 *) &pp->cmdentry->cfis;

/* device reset/SRST is a control register update FIS, uses tag0 */
sata_fsl_setup_cmd_hdr_entry(pp, 0,
Expand Down Expand Up @@ -963,7 +963,7 @@ static int sata_fsl_softreset(struct ata_link *link, unsigned int *class,

iowrite32(0x01, CC + hcr_base); /* We know it will be cmd#0 always */

check_device_signature:
check_device_signature:

DPRINTK("SATA FSL : Now checking device signature\n");

Expand Down

0 comments on commit 962d6c6

Please sign in to comment.