m68k/block: amiflop - Remove superfluous amiga_chip_alloc() cast
amiga_chip_alloc() returns a void *, so we don't need a cast. Also clean up coding style while we're at it. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
This commit is contained in:
@@ -1768,8 +1768,8 @@ static int __init amiga_floppy_probe(struct platform_device *pdev)
|
|||||||
return -EBUSY;
|
return -EBUSY;
|
||||||
|
|
||||||
ret = -ENOMEM;
|
ret = -ENOMEM;
|
||||||
if ((raw_buf = (char *)amiga_chip_alloc (RAW_BUF_SIZE, "Floppy")) ==
|
raw_buf = amiga_chip_alloc(RAW_BUF_SIZE, "Floppy");
|
||||||
NULL) {
|
if (!raw_buf) {
|
||||||
printk("fd: cannot get chip mem buffer\n");
|
printk("fd: cannot get chip mem buffer\n");
|
||||||
goto out_blkdev;
|
goto out_blkdev;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user