mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-29 12:55:24 -04:00
serial: max3100: Switch to use dev_err_probe()
Switch to use dev_err_probe() to simplify the error path and unify a message template. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Link: https://lore.kernel.org/r/20240409144721.638326-5-andriy.shevchenko@linux.intel.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
8c15f723ca
commit
bbcbf73921
@@ -716,9 +716,8 @@ static int max3100_probe(struct spi_device *spi)
|
||||
if (!uart_driver_registered) {
|
||||
retval = uart_register_driver(&max3100_uart_driver);
|
||||
if (retval) {
|
||||
printk(KERN_ERR "Couldn't register max3100 uart driver\n");
|
||||
mutex_unlock(&max3100s_lock);
|
||||
return retval;
|
||||
return dev_err_probe(dev, retval, "Couldn't register max3100 uart driver\n");
|
||||
}
|
||||
|
||||
uart_driver_registered = 1;
|
||||
@@ -728,15 +727,12 @@ static int max3100_probe(struct spi_device *spi)
|
||||
if (!max3100s[i])
|
||||
break;
|
||||
if (i == MAX_MAX3100) {
|
||||
dev_warn(&spi->dev, "too many MAX3100 chips\n");
|
||||
mutex_unlock(&max3100s_lock);
|
||||
return -ENOMEM;
|
||||
return dev_err_probe(dev, -ENOMEM, "too many MAX3100 chips\n");
|
||||
}
|
||||
|
||||
max3100s[i] = kzalloc(sizeof(struct max3100_port), GFP_KERNEL);
|
||||
if (!max3100s[i]) {
|
||||
dev_warn(&spi->dev,
|
||||
"kmalloc for max3100 structure %d failed!\n", i);
|
||||
mutex_unlock(&max3100s_lock);
|
||||
return -ENOMEM;
|
||||
}
|
||||
@@ -760,9 +756,7 @@ static int max3100_probe(struct spi_device *spi)
|
||||
|
||||
retval = uart_add_one_port(&max3100_uart_driver, &max3100s[i]->port);
|
||||
if (retval < 0)
|
||||
dev_warn(&spi->dev,
|
||||
"uart_add_one_port failed for line %d with error %d\n",
|
||||
i, retval);
|
||||
dev_err_probe(dev, retval, "uart_add_one_port failed for line %d\n", i);
|
||||
|
||||
/* set shutdown mode to save power. Will be woken-up on open */
|
||||
max3100_sr(max3100s[i], MAX3100_WC | MAX3100_SHDN, &rx);
|
||||
|
||||
Reference in New Issue
Block a user