|
@@ -29,6 +29,8 @@
|
|
#include <linux/of_gpio.h>
|
|
#include <linux/of_gpio.h>
|
|
|
|
|
|
#include "atmel_usba_udc.h"
|
|
#include "atmel_usba_udc.h"
|
|
|
|
+#define USBA_VBUS_IRQFLAGS (IRQF_ONESHOT \
|
|
|
|
+ | IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING)
|
|
|
|
|
|
#ifdef CONFIG_USB_GADGET_DEBUG_FS
|
|
#ifdef CONFIG_USB_GADGET_DEBUG_FS
|
|
#include <linux/debugfs.h>
|
|
#include <linux/debugfs.h>
|
|
@@ -2361,7 +2363,7 @@ static int usba_udc_probe(struct platform_device *pdev)
|
|
IRQ_NOAUTOEN);
|
|
IRQ_NOAUTOEN);
|
|
ret = devm_request_threaded_irq(&pdev->dev,
|
|
ret = devm_request_threaded_irq(&pdev->dev,
|
|
gpio_to_irq(udc->vbus_pin), NULL,
|
|
gpio_to_irq(udc->vbus_pin), NULL,
|
|
- usba_vbus_irq_thread, IRQF_ONESHOT,
|
|
|
|
|
|
+ usba_vbus_irq_thread, USBA_VBUS_IRQFLAGS,
|
|
"atmel_usba_udc", udc);
|
|
"atmel_usba_udc", udc);
|
|
if (ret) {
|
|
if (ret) {
|
|
udc->vbus_pin = -ENODEV;
|
|
udc->vbus_pin = -ENODEV;
|