summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2017-03-06 09:00:49 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2017-03-06 09:00:49 +0100
commitdb5a5e3002e7533f7164f3b08dfe3545a6949d27 (patch)
treea457b804d398b3f990b14e72a869b81dc6fc6fbe /drivers
parentda2ec36e7ca42e577e2ce59f89c0f5f5f81b7f81 (diff)
downloadbarebox-db5a5e3002e7533f7164f3b08dfe3545a6949d27.tar.gz
barebox-db5a5e3002e7533f7164f3b08dfe3545a6949d27.tar.xz
dma: apbh_dma: add missing array termination
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/dma/apbh_dma.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/dma/apbh_dma.c b/drivers/dma/apbh_dma.c
index 64f4326514..b84c0f7985 100644
--- a/drivers/dma/apbh_dma.c
+++ b/drivers/dma/apbh_dma.c
@@ -648,7 +648,9 @@ static struct platform_device_id apbh_ids[] = {
}, {
.name = "imx28-dma-apbh",
.driver_data = (unsigned long)IMX28_DMA,
- },
+ }, {
+ /* sentinel */
+ }
};
static __maybe_unused struct of_device_id apbh_dt_ids[] = {