diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-04 18:15:15 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-04 18:15:15 -0400 |
commit | 03da30986793385af57eeca3296253c887b742e6 (patch) | |
tree | 9c46dbe51c9d0856990649dd917ab45474b7be87 /drivers/scsi/aic7xxx/aic7xxx_93cx6.c | |
parent | 6ba74014c1ab0e37af7de6f64b4eccbbae3cb9e7 (diff) | |
parent | 339f4f4eab80caa6cf0d39fb057ad6ddb84ba91e (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6: (276 commits)
[SCSI] zfcp: Trigger logging in the FCP channel on qdio error conditions
[SCSI] zfcp: Introduce experimental support for DIF/DIX
[SCSI] zfcp: Enable data division support for FCP devices
[SCSI] zfcp: Prevent access on uninitialized memory.
[SCSI] zfcp: Post events through FC transport class
[SCSI] zfcp: Cleanup QDIO attachment and improve processing.
[SCSI] zfcp: Cleanup function parameters for sbal value.
[SCSI] zfcp: Use correct width for timer_interval field
[SCSI] zfcp: Remove SCSI device when removing unit
[SCSI] zfcp: Use memdup_user and kstrdup
[SCSI] zfcp: Fix retry after failed "open port" erp action
[SCSI] zfcp: Fail erp after timeout
[SCSI] zfcp: Use forced_reopen in terminate_rport_io callback
[SCSI] zfcp: Register SCSI devices after successful fc_remote_port_add
[SCSI] zfcp: Do not try "forced close" when port is already closed
[SCSI] zfcp: Do not unblock rport from REOPEN_PORT_FORCED
[SCSI] sd: add support for runtime PM
[SCSI] implement runtime Power Management
[SCSI] convert to the new PM framework
[SCSI] Unify SAM_ and SAM_STAT_ macros
...
Diffstat (limited to 'drivers/scsi/aic7xxx/aic7xxx_93cx6.c')
-rw-r--r-- | drivers/scsi/aic7xxx/aic7xxx_93cx6.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/scsi/aic7xxx/aic7xxx_93cx6.c b/drivers/scsi/aic7xxx/aic7xxx_93cx6.c index dd11999b77b6..9e85a7ef9c8e 100644 --- a/drivers/scsi/aic7xxx/aic7xxx_93cx6.c +++ b/drivers/scsi/aic7xxx/aic7xxx_93cx6.c | |||
@@ -207,14 +207,14 @@ ahc_read_seeprom(struct seeprom_descriptor *sd, uint16_t *buf, | |||
207 | reset_seeprom(sd); | 207 | reset_seeprom(sd); |
208 | } | 208 | } |
209 | #ifdef AHC_DUMP_EEPROM | 209 | #ifdef AHC_DUMP_EEPROM |
210 | printf("\nSerial EEPROM:\n\t"); | 210 | printk("\nSerial EEPROM:\n\t"); |
211 | for (k = 0; k < count; k = k + 1) { | 211 | for (k = 0; k < count; k = k + 1) { |
212 | if (((k % 8) == 0) && (k != 0)) { | 212 | if (((k % 8) == 0) && (k != 0)) { |
213 | printf ("\n\t"); | 213 | printk(KERN_CONT "\n\t"); |
214 | } | 214 | } |
215 | printf (" 0x%x", buf[k]); | 215 | printk(KERN_CONT " 0x%x", buf[k]); |
216 | } | 216 | } |
217 | printf ("\n"); | 217 | printk(KERN_CONT "\n"); |
218 | #endif | 218 | #endif |
219 | return (1); | 219 | return (1); |
220 | } | 220 | } |
@@ -240,7 +240,7 @@ ahc_write_seeprom(struct seeprom_descriptor *sd, uint16_t *buf, | |||
240 | ewen = &seeprom_long_ewen; | 240 | ewen = &seeprom_long_ewen; |
241 | ewds = &seeprom_long_ewds; | 241 | ewds = &seeprom_long_ewds; |
242 | } else { | 242 | } else { |
243 | printf("ahc_write_seeprom: unsupported seeprom type %d\n", | 243 | printk("ahc_write_seeprom: unsupported seeprom type %d\n", |
244 | sd->sd_chip); | 244 | sd->sd_chip); |
245 | return (0); | 245 | return (0); |
246 | } | 246 | } |