Browse Source

serial: max310x: Remove IRQ validation

This patch removes excess IRQ checks at driver probe().
IRQ validation is already provided by request_threaded_irq().

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alexander Shiyan 11 years ago
parent
commit
bb157e50cd
1 changed files with 0 additions and 6 deletions
  1. 0 6
      drivers/tty/serial/max310x.c

+ 0 - 6
drivers/tty/serial/max310x.c

@@ -1081,12 +1081,6 @@ static int max310x_probe(struct device *dev, int is_spi,
 	struct max310x_pdata *pdata = dev_get_platdata(dev);
 	struct max310x_pdata *pdata = dev_get_platdata(dev);
 	int i, ret, uartclk;
 	int i, ret, uartclk;
 
 
-	/* Check for IRQ */
-	if (irq <= 0) {
-		dev_err(dev, "No IRQ specified\n");
-		return -ENOTSUPP;
-	}
-
 	if (!pdata) {
 	if (!pdata) {
 		dev_err(dev, "No platform data supplied\n");
 		dev_err(dev, "No platform data supplied\n");
 		return -EINVAL;
 		return -EINVAL;