Skip to content

Commit

Permalink
[PATCH] sil24: fix PORT_CTRL_STAT constants
Browse files Browse the repository at this point in the history
07_sil24_fix-PORT_CTRL_STAT-constants.patch

	PORT_CTRL_STAT constants were copied incorrectly from the
	preview driver.

Signed-off-by: Edward Falk

 sata_sil24.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
  • Loading branch information
Tejun Heo authored and Jeff Garzik committed Aug 17, 2005
1 parent 4f50c3c commit e382eb1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/scsi/sata_sil24.c
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,10 @@ enum {
PORT_CS_DEV_RST = (1 << 1), /* device reset */
PORT_CS_INIT = (1 << 2), /* port initialize */
PORT_CS_IRQ_WOC = (1 << 3), /* interrupt write one to clear */
PORT_CS_RESUME = (1 << 4), /* port resume */
PORT_CS_32BIT_ACTV = (1 << 5), /* 32-bit activation */
PORT_CS_PM_EN = (1 << 6), /* port multiplier enable */
PORT_CS_RDY = (1 << 7), /* port ready to accept commands */
PORT_CS_RESUME = (1 << 6), /* port resume */
PORT_CS_32BIT_ACTV = (1 << 10), /* 32-bit activation */
PORT_CS_PM_EN = (1 << 13), /* port multiplier enable */
PORT_CS_RDY = (1 << 31), /* port ready to accept commands */

/* PORT_IRQ_STAT/ENABLE_SET/CLR */
/* bits[11:0] are masked */
Expand Down

0 comments on commit e382eb1

Please sign in to comment.