ASoC: ymu831: remove IRQF_DISABLED
authorSeung-Woo Kim <sw0312.kim@samsung.com>
Wed, 27 Jul 2016 08:38:10 +0000 (17:38 +0900)
committerSeung-Woo Kim <sw0312.kim@samsung.com>
Wed, 27 Jul 2016 10:03:06 +0000 (19:03 +0900)
commitdb753382c086999c77a8df13517fb52ae650a00c
tree568e27ca43b9c25f3189b8dfa012ff19307f5e40
parent623af60e0ac81da55539474f3a363c3833979404
ASoC: ymu831: remove IRQF_DISABLED

After mainline commit "d8bf368 genirq: Remove the deprecated
'IRQF_DISABLED' request_irq() flag entirely", IRQF_DISABLED is
removed. The flags is deprecated in early kernel, so it can
be replaced with 0x0 like other drivers.

This patch fixes following build error:
   sound/soc/codecs/ymu831/ymu831.c: In function 'init_irq':
   sound/soc/codecs/ymu831/ymu831.c:8525:54: error: 'IRQF_DISABLED' undeclared (first use in this    function)
     err = request_irq(mc_asoc->pdata->irq, irq_handler, IRQF_DISABLED,
                                                         ^

Change-Id: Id06d964fbe2a62f8c9c642d13479782b9663e7cc
Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
sound/soc/codecs/ymu831/ymu831.c