Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b6bd2633 authored by Paul Mundt's avatar Paul Mundt
Browse files

sh: hp6xx evt2irq migration.



Migrate hp6xx to evt2irq backed hwirq lookups.

Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent b894701e
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -13,6 +13,7 @@
#include <linux/init.h>
#include <linux/platform_device.h>
#include <linux/irq.h>
#include <linux/sh_intc.h>
#include <sound/sh_dac_audio.h>
#include <asm/hd64461.h>
#include <asm/io.h>
@@ -35,7 +36,7 @@ static struct resource cf_ide_resources[] = {
		.flags = IORESOURCE_MEM,
	},
	[2] = {
		.start = 77,
		.start = evt2irq(0xba0),
		.flags = IORESOURCE_IRQ,
	},
};
+4 −3
Original line number Diff line number Diff line
@@ -9,10 +9,11 @@
 * for more details.
 *
 */
#include <linux/sh_intc.h>

#define HP680_BTN_IRQ		32	/* IRQ0_IRQ */
#define HP680_TS_IRQ		35	/* IRQ3_IRQ */
#define HP680_HD64461_IRQ	36	/* IRQ4_IRQ */
#define HP680_BTN_IRQ		evt2irq(0x600)	/* IRQ0_IRQ */
#define HP680_TS_IRQ		evt2irq(0x660)	/* IRQ3_IRQ */
#define HP680_HD64461_IRQ	evt2irq(0x680)	/* IRQ4_IRQ */

#define DAC_LCD_BRIGHTNESS	0
#define DAC_SPEAKER_VOLUME	1