diff options
Diffstat (limited to 'drivers/spi/spi-sh-msiof.c')
| -rw-r--r-- | drivers/spi/spi-sh-msiof.c | 10 | 
1 files changed, 3 insertions, 7 deletions
| diff --git a/drivers/spi/spi-sh-msiof.c b/drivers/spi/spi-sh-msiof.c index 101cd6aae2ea..adf384323934 100644 --- a/drivers/spi/spi-sh-msiof.c +++ b/drivers/spi/spi-sh-msiof.c @@ -1,14 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0  /*   * SuperH MSIOF SPI Master Interface   *   * Copyright (c) 2009 Magnus Damm   * Copyright (C) 2014 Renesas Electronics Corporation   * Copyright (C) 2014-2017 Glider bvba - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 as - * published by the Free Software Foundation. - *   */  #include <linux/bitmap.h> @@ -1343,8 +1339,8 @@ static int sh_msiof_spi_probe(struct platform_device *pdev)  	i = platform_get_irq(pdev, 0);  	if (i < 0) { -		dev_err(&pdev->dev, "cannot get platform IRQ\n"); -		ret = -ENOENT; +		dev_err(&pdev->dev, "cannot get IRQ\n"); +		ret = i;  		goto err1;  	} |