Merge branch 'jejb-scsi' into misc

This commit is contained in:
James Bottomley
2016-01-07 15:51:13 -08:00
822 changed files with 11545 additions and 5928 deletions

View File

@@ -760,7 +760,7 @@ mvs_store_interrupt_coalescing(struct device *cdev,
struct device_attribute *attr,
const char *buffer, size_t size)
{
int val = 0;
unsigned int val = 0;
struct mvs_info *mvi = NULL;
struct Scsi_Host *shost = class_to_shost(cdev);
struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
@@ -768,7 +768,7 @@ mvs_store_interrupt_coalescing(struct device *cdev,
if (buffer == NULL)
return size;
if (sscanf(buffer, "%d", &val) != 1)
if (sscanf(buffer, "%u", &val) != 1)
return -EINVAL;
if (val >= 0x10000) {