From: Peter Ujfalusi <peter.ujfalusi@ti.com>
To: vinod.koul@intel.com, nsekhar@ti.com, linux@arm.linux.org.uk
Cc: olof@lixom.net, arnd@arndb.de,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, linux-omap@vger.kernel.org,
dmaengine@vger.kernel.org
Subject: Re: [PATCH v2 04/23] ARM: davinci/common: Convert edma driver to handle one eDMA instance per driver
Date: Fri, 18 Sep 2015 14:44:32 +0300 [thread overview]
Message-ID: <55FBF920.2090204@ti.com> (raw)
In-Reply-To: <1441974442-8233-5-git-send-email-peter.ujfalusi@ti.com>
On 09/11/2015 03:27 PM, Peter Ujfalusi wrote:
> + if (irq >= 0) {
> + irq_name = devm_kasprintf(dev, GFP_KERNEL, "%s_ccint\n",
The '\n' should not be in the format string.
> + dev_name(dev));
> + ret = devm_request_irq(dev, irq, dma_irq_handler, 0, irq_name,
> + cc);
> + if (ret) {
> + dev_err(dev, "CCINT (%d) failed --> %d\n", irq, ret);
> + return ret;
> }
> + }
>
> - for (i = 0; i < edma_cc[j]->num_channels; i++)
> - map_dmach_queue(j, i, info[j]->default_queue);
> + irq = platform_get_irq_byname(pdev, "edma3_ccerrint");
> + if (irq < 0 && node)
> + irq = irq_of_parse_and_map(node, 2);
> +
> + if (irq >= 0) {
> + irq_name = devm_kasprintf(dev, GFP_KERNEL,
> + "%s_ccerrint\n",
Same here.
> + dev_name(dev));
> + ret = devm_request_irq(dev, irq, dma_ccerr_handler, 0, irq_name,
> + cc);
> + if (ret) {
> + dev_err(dev, "CCERRINT (%d) failed --> %d\n", irq, ret);
> + return ret;
> + }
> + }
--
Péter
next prev parent reply other threads:[~2015-09-18 11:44 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-11 12:26 [PATCH v2 00/23] dmaengine/ARM: Merge the edma drivers into one Peter Ujfalusi
2015-09-11 12:27 ` [PATCH v2 01/23] ARM: common: edma: Fix channel parameter for irq callbacks Peter Ujfalusi
2015-09-11 12:27 ` [PATCH v2 02/23] ARM: common: edma: Remove unused functions Peter Ujfalusi
2015-09-11 12:27 ` [PATCH v2 03/23] dmaengine: edma: Simplify and optimize the edma_execute path Peter Ujfalusi
2015-09-11 12:27 ` [PATCH v2 04/23] ARM: davinci/common: Convert edma driver to handle one eDMA instance per driver Peter Ujfalusi
2015-09-18 11:44 ` Peter Ujfalusi [this message]
2015-09-11 12:27 ` [PATCH v2 05/23] ARM/dmaengine: edma: Move of_dma_controller_register to the dmaengine driver Peter Ujfalusi
2015-09-11 12:27 ` [PATCH v2 06/23] ARM: common: edma: Internal API to use pointer to 'struct edma' Peter Ujfalusi
2015-09-11 12:27 ` [PATCH v2 07/23] ARM/dmaengine: edma: Public API to use private struct pointer Peter Ujfalusi
2015-09-11 12:27 ` [PATCH v2 08/23] ARM/dmaengine: edma: Remove limitation on the number of eDMA controllers Peter Ujfalusi
2015-09-11 12:27 ` [PATCH v2 09/23] ARM: davinci: Use platform_device_register_full() to create pdev for eDMA Peter Ujfalusi
2015-09-11 12:27 ` [PATCH v2 10/23] ARM: davinci: Add set dma_mask to eDMA devices Peter Ujfalusi
2015-09-11 12:27 ` [PATCH v2 11/23] ARM/dmaengine: edma: Merge the two drivers under drivers/dmaengine Peter Ujfalusi
2015-09-14 16:12 ` Tony Lindgren
2015-09-15 6:45 ` Peter Ujfalusi
2015-09-11 12:27 ` [PATCH v2 12/23] dmaengine: edma: Allocate memory dynamically for bitmaps and structures Peter Ujfalusi
2015-09-11 12:27 ` [PATCH v2 13/23] dmaengine: edma: Parameter alignment and long line fixes Peter Ujfalusi
2015-09-11 12:27 ` [PATCH v2 14/23] dmaengine: edma: Use devm_kcalloc when possible Peter Ujfalusi
2015-09-11 12:27 ` [PATCH v2 15/23] dmaengine: edma: Cleanup regarding the use of dev around the code Peter Ujfalusi
2015-09-11 12:27 ` [PATCH v2 16/23] dmaengine: edma: Use dev_dbg instead pr_debug Peter Ujfalusi
2015-09-11 12:27 ` [PATCH v2 17/23] dmaengine: edma: Use the edma_write_slot instead open coded memcpy_toio Peter Ujfalusi
2015-09-11 12:27 ` [PATCH v2 18/23] dmaengine: edma: Print warning when linking slots from different eDMA Peter Ujfalusi
2015-09-11 12:27 ` [PATCH v2 19/23] dmaengine: edma: Consolidate the comments for functions Peter Ujfalusi
2015-09-11 12:27 ` [PATCH v2 20/23] dmaengine: edma: Simplify the interrupt handling Peter Ujfalusi
2015-09-11 12:27 ` [PATCH v2 21/23] dmaengine: edma: Move the pending error check into helper function Peter Ujfalusi
2015-09-11 12:27 ` [PATCH v2 22/23] dmaengine: edma: Simplify and optimize ccerr interrupt handler Peter Ujfalusi
2015-09-11 12:27 ` [PATCH v2 23/23] dmaengine: edma: Read channel mapping support only once from HW Peter Ujfalusi
2015-09-12 11:21 ` [PATCH v2 00/23] dmaengine/ARM: Merge the edma drivers into one Sekhar Nori
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=55FBF920.2090204@ti.com \
--to=peter.ujfalusi@ti.com \
--cc=arnd@arndb.de \
--cc=dmaengine@vger.kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
--cc=linux@arm.linux.org.uk \
--cc=nsekhar@ti.com \
--cc=olof@lixom.net \
--cc=vinod.koul@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).