From 560409c912d29e6001fb6bdef790f8ecccd58284 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 5 Jul 2014 17:47:17 -0600 Subject: [PATCH] MXT interface does not need an IRQ number; SAMA5D4-EK setup omitted I2C frequency --- configs/sama5d4-ek/src/sam_maxtouch.c | 1 + include/nuttx/input/mxt.h | 8 -------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/configs/sama5d4-ek/src/sam_maxtouch.c b/configs/sama5d4-ek/src/sam_maxtouch.c index 7b5ae344e4..7a8fb39654 100644 --- a/configs/sama5d4-ek/src/sam_maxtouch.c +++ b/configs/sama5d4-ek/src/sam_maxtouch.c @@ -128,6 +128,7 @@ static struct sama5d4ek_tscinfo_s g_mxtinfo = { .lower = { + .address = (0x4c >> 1), .frequency = CONFIG_SAMA5D4EK_MXT_I2CFREQUENCY, .attach = mxt_attach, diff --git a/include/nuttx/input/mxt.h b/include/nuttx/input/mxt.h index a1d48e75d5..5563758a29 100644 --- a/include/nuttx/input/mxt.h +++ b/include/nuttx/input/mxt.h @@ -123,14 +123,6 @@ struct mxt_lower_s uint8_t address; /* 7-bit I2C address (only bits 0-6 used) */ uint32_t frequency; /* I2C frequency */ -#ifndef CONFIG_MXT_MULTIPLE - /* If multiple MXT devices are supported, then an IRQ number must - * be provided for each so that their interrupts can be distinguished. - */ - - int irq; /* IRQ number received by interrupt handler. */ -#endif - /* True: Swap X and Y values */ bool swapxy;