Browse Source

Staging: mt29f_spinand: Remove space after a cast

Modify retval to reflect removal of space during cast operation.
Checkpatch found this issue.

CHECK: No space is necessary after a cast

Signed-off-by: Eva Rachel Retuya <eraretuya@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Eva Rachel Retuya 10 years ago
parent
commit
13d0580cd1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/staging/mt29f_spinand/mt29f_spinand.c

+ 1 - 1
drivers/staging/mt29f_spinand/mt29f_spinand.c

@@ -594,7 +594,7 @@ static int spinand_erase_block(struct spi_device *spi_nand, u16 block_id)
 		if (retval < 0) {
 			dev_err(&spi_nand->dev,
 					"error %d reading status register\n",
-					(int) retval);
+					(int)retval);
 			return retval;
 		}