Merge tag 'at91-fixes' of git://github.com/at91linux/linux-at91 into fixes
From Nicolas Ferre <nicolas.ferre@atmel.com>: Two little fixes, one related to the move to sparse irq and another one fixing the check of a GPIO for USB host overcurrent. * tag 'at91-fixes' of git://github.com/at91linux/linux-at91: ARM: at91/usbh: fix overcurrent gpio setup ARM: at91/AT91SAM9G45: fix crypto peripherals irq issue due to sparse irq support Signed-off-by: Arnd Bergmann <arnd@arndb.de>
This commit is contained in:
@@ -68,7 +68,7 @@ void __init at91_add_device_usbh(struct at91_usbh_data *data)
|
|||||||
|
|
||||||
/* Enable overcurrent notification */
|
/* Enable overcurrent notification */
|
||||||
for (i = 0; i < data->ports; i++) {
|
for (i = 0; i < data->ports; i++) {
|
||||||
if (data->overcurrent_pin[i])
|
if (gpio_is_valid(data->overcurrent_pin[i]))
|
||||||
at91_set_gpio_input(data->overcurrent_pin[i], 1);
|
at91_set_gpio_input(data->overcurrent_pin[i], 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -72,7 +72,7 @@ void __init at91_add_device_usbh(struct at91_usbh_data *data)
|
|||||||
|
|
||||||
/* Enable overcurrent notification */
|
/* Enable overcurrent notification */
|
||||||
for (i = 0; i < data->ports; i++) {
|
for (i = 0; i < data->ports; i++) {
|
||||||
if (data->overcurrent_pin[i])
|
if (gpio_is_valid(data->overcurrent_pin[i]))
|
||||||
at91_set_gpio_input(data->overcurrent_pin[i], 1);
|
at91_set_gpio_input(data->overcurrent_pin[i], 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -72,7 +72,7 @@ void __init at91_add_device_usbh(struct at91_usbh_data *data)
|
|||||||
|
|
||||||
/* Enable overcurrent notification */
|
/* Enable overcurrent notification */
|
||||||
for (i = 0; i < data->ports; i++) {
|
for (i = 0; i < data->ports; i++) {
|
||||||
if (data->overcurrent_pin[i])
|
if (gpio_is_valid(data->overcurrent_pin[i]))
|
||||||
at91_set_gpio_input(data->overcurrent_pin[i], 1);
|
at91_set_gpio_input(data->overcurrent_pin[i], 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -78,7 +78,7 @@ void __init at91_add_device_usbh(struct at91_usbh_data *data)
|
|||||||
|
|
||||||
/* Enable overcurrent notification */
|
/* Enable overcurrent notification */
|
||||||
for (i = 0; i < data->ports; i++) {
|
for (i = 0; i < data->ports; i++) {
|
||||||
if (data->overcurrent_pin[i])
|
if (gpio_is_valid(data->overcurrent_pin[i]))
|
||||||
at91_set_gpio_input(data->overcurrent_pin[i], 1);
|
at91_set_gpio_input(data->overcurrent_pin[i], 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1841,8 +1841,8 @@ static struct resource sha_resources[] = {
|
|||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
[1] = {
|
[1] = {
|
||||||
.start = AT91SAM9G45_ID_AESTDESSHA,
|
.start = NR_IRQS_LEGACY + AT91SAM9G45_ID_AESTDESSHA,
|
||||||
.end = AT91SAM9G45_ID_AESTDESSHA,
|
.end = NR_IRQS_LEGACY + AT91SAM9G45_ID_AESTDESSHA,
|
||||||
.flags = IORESOURCE_IRQ,
|
.flags = IORESOURCE_IRQ,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@@ -1874,8 +1874,8 @@ static struct resource tdes_resources[] = {
|
|||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
[1] = {
|
[1] = {
|
||||||
.start = AT91SAM9G45_ID_AESTDESSHA,
|
.start = NR_IRQS_LEGACY + AT91SAM9G45_ID_AESTDESSHA,
|
||||||
.end = AT91SAM9G45_ID_AESTDESSHA,
|
.end = NR_IRQS_LEGACY + AT91SAM9G45_ID_AESTDESSHA,
|
||||||
.flags = IORESOURCE_IRQ,
|
.flags = IORESOURCE_IRQ,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@@ -1910,8 +1910,8 @@ static struct resource aes_resources[] = {
|
|||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
[1] = {
|
[1] = {
|
||||||
.start = AT91SAM9G45_ID_AESTDESSHA,
|
.start = NR_IRQS_LEGACY + AT91SAM9G45_ID_AESTDESSHA,
|
||||||
.end = AT91SAM9G45_ID_AESTDESSHA,
|
.end = NR_IRQS_LEGACY + AT91SAM9G45_ID_AESTDESSHA,
|
||||||
.flags = IORESOURCE_IRQ,
|
.flags = IORESOURCE_IRQ,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user