diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-27 14:25:00 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-27 14:25:00 -0400 |
commit | 064922a805ec7aadfafdd27aa6b4908d737c3c1d (patch) | |
tree | 922d058f751964ccf73f5705d7c492b6d45a9425 /drivers/scsi/st.c | |
parent | 42cadc86008aae0fd9ff31642dc01ed50723cf32 (diff) | |
parent | ecc1241e80a0bdc854b1602a44be3ad106753d4f (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: (40 commits)
[SCSI] jazz_esp, sgiwd93, sni_53c710, sun3x_esp: fix platform driver hotplug/coldplug
[SCSI] aic7xxx: add const
[SCSI] aic7xxx: add static
[SCSI] aic7xxx: Update _shipped files
[SCSI] aic7xxx: teach aicasm to not emit unused debug code/data
[SCSI] qla2xxx: Update version number to 8.02.01-k2.
[SCSI] qla2xxx: Correct regression in relogin code.
[SCSI] qla2xxx: Correct misc. endian and byte-ordering issues.
[SCSI] qla2xxx: make qla2x00_issue_iocb_timeout() static
[SCSI] qla2xxx: qla_os.c, make 2 functions static
[SCSI] qla2xxx: Re-register FDMI information after a LIP.
[SCSI] qla2xxx: Correct SRB usage-after-completion/free issues.
[SCSI] qla2xxx: Correct ISP84XX verify-chip response handling.
[SCSI] qla2xxx: Wakeup DPC thread to process any deferred-work requests.
[SCSI] qla2xxx: Collapse RISC-RAM retrieval code during a firmware-dump.
[SCSI] m68k: new mac_esp scsi driver
[SCSI] zfcp: Add some statistics provided by the FCP adapter to the sysfs
[SCSI] zfcp: Print some messages only during ERP
[SCSI] zfcp: Wait for free SBAL during exchange config
[SCSI] scsi_transport_fc: fc_user_scan correction
...
Diffstat (limited to 'drivers/scsi/st.c')
-rw-r--r-- | drivers/scsi/st.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/scsi/st.c b/drivers/scsi/st.c index a860c3a9ae99..e8db66ad0bde 100644 --- a/drivers/scsi/st.c +++ b/drivers/scsi/st.c | |||
@@ -4322,7 +4322,7 @@ static void do_remove_sysfs_files(void) | |||
4322 | static ssize_t | 4322 | static ssize_t |
4323 | st_defined_show(struct device *dev, struct device_attribute *attr, char *buf) | 4323 | st_defined_show(struct device *dev, struct device_attribute *attr, char *buf) |
4324 | { | 4324 | { |
4325 | struct st_modedef *STm = (struct st_modedef *)dev_get_drvdata(dev); | 4325 | struct st_modedef *STm = dev_get_drvdata(dev); |
4326 | ssize_t l = 0; | 4326 | ssize_t l = 0; |
4327 | 4327 | ||
4328 | l = snprintf(buf, PAGE_SIZE, "%d\n", STm->defined); | 4328 | l = snprintf(buf, PAGE_SIZE, "%d\n", STm->defined); |
@@ -4334,7 +4334,7 @@ DEVICE_ATTR(defined, S_IRUGO, st_defined_show, NULL); | |||
4334 | static ssize_t | 4334 | static ssize_t |
4335 | st_defblk_show(struct device *dev, struct device_attribute *attr, char *buf) | 4335 | st_defblk_show(struct device *dev, struct device_attribute *attr, char *buf) |
4336 | { | 4336 | { |
4337 | struct st_modedef *STm = (struct st_modedef *)dev_get_drvdata(dev); | 4337 | struct st_modedef *STm = dev_get_drvdata(dev); |
4338 | ssize_t l = 0; | 4338 | ssize_t l = 0; |
4339 | 4339 | ||
4340 | l = snprintf(buf, PAGE_SIZE, "%d\n", STm->default_blksize); | 4340 | l = snprintf(buf, PAGE_SIZE, "%d\n", STm->default_blksize); |
@@ -4346,7 +4346,7 @@ DEVICE_ATTR(default_blksize, S_IRUGO, st_defblk_show, NULL); | |||
4346 | static ssize_t | 4346 | static ssize_t |
4347 | st_defdensity_show(struct device *dev, struct device_attribute *attr, char *buf) | 4347 | st_defdensity_show(struct device *dev, struct device_attribute *attr, char *buf) |
4348 | { | 4348 | { |
4349 | struct st_modedef *STm = (struct st_modedef *)dev_get_drvdata(dev); | 4349 | struct st_modedef *STm = dev_get_drvdata(dev); |
4350 | ssize_t l = 0; | 4350 | ssize_t l = 0; |
4351 | char *fmt; | 4351 | char *fmt; |
4352 | 4352 | ||
@@ -4361,7 +4361,7 @@ static ssize_t | |||
4361 | st_defcompression_show(struct device *dev, struct device_attribute *attr, | 4361 | st_defcompression_show(struct device *dev, struct device_attribute *attr, |
4362 | char *buf) | 4362 | char *buf) |
4363 | { | 4363 | { |
4364 | struct st_modedef *STm = (struct st_modedef *)dev_get_drvdata(dev); | 4364 | struct st_modedef *STm = dev_get_drvdata(dev); |
4365 | ssize_t l = 0; | 4365 | ssize_t l = 0; |
4366 | 4366 | ||
4367 | l = snprintf(buf, PAGE_SIZE, "%d\n", STm->default_compression - 1); | 4367 | l = snprintf(buf, PAGE_SIZE, "%d\n", STm->default_compression - 1); |
@@ -4373,7 +4373,7 @@ DEVICE_ATTR(default_compression, S_IRUGO, st_defcompression_show, NULL); | |||
4373 | static ssize_t | 4373 | static ssize_t |
4374 | st_options_show(struct device *dev, struct device_attribute *attr, char *buf) | 4374 | st_options_show(struct device *dev, struct device_attribute *attr, char *buf) |
4375 | { | 4375 | { |
4376 | struct st_modedef *STm = (struct st_modedef *)dev_get_drvdata(dev); | 4376 | struct st_modedef *STm = dev_get_drvdata(dev); |
4377 | struct scsi_tape *STp; | 4377 | struct scsi_tape *STp; |
4378 | int i, j, options; | 4378 | int i, j, options; |
4379 | ssize_t l = 0; | 4379 | ssize_t l = 0; |