From patchwork Mon Nov 14 10:11:01 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Charles Keepax X-Patchwork-Id: 9427073 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id D14C260476 for ; Mon, 14 Nov 2016 10:11:42 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id BDFC4287B4 for ; Mon, 14 Nov 2016 10:11:42 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id B2BA4287BB; Mon, 14 Nov 2016 10:11:42 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 60811287C4 for ; Mon, 14 Nov 2016 10:11:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933951AbcKNKLd (ORCPT ); Mon, 14 Nov 2016 05:11:33 -0500 Received: from mx0a-001ae601.pphosted.com ([67.231.149.25]:60925 "EHLO mx0b-001ae601.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S933968AbcKNKLa (ORCPT ); Mon, 14 Nov 2016 05:11:30 -0500 Received: from pps.filterd (m0077473.ppops.net [127.0.0.1]) by mx0a-001ae601.pphosted.com (8.16.0.17/8.16.0.17) with SMTP id uAEAAGnU025122; Mon, 14 Nov 2016 04:10:54 -0600 Authentication-Results: ppops.net; spf=none smtp.mailfrom=ckeepax@opensource.wolfsonmicro.com Received: from mail2.cirrus.com (mail1.cirrus.com [141.131.3.20]) by mx0a-001ae601.pphosted.com with ESMTP id 26p1c3t4y9-1; Mon, 14 Nov 2016 04:10:54 -0600 Received: from EX17.ad.cirrus.com (unknown [172.20.9.81]) by mail2.cirrus.com (Postfix) with ESMTP id 7F24F611C8AF; Mon, 14 Nov 2016 04:10:53 -0600 (CST) Received: from imbe.wolfsonmicro.main (198.61.95.81) by EX17.ad.cirrus.com (172.20.9.81) with Microsoft SMTP Server id 14.3.301.0; Mon, 14 Nov 2016 10:10:52 +0000 Received: from localhost.localdomain ([172.22.20.24]) by imbe.wolfsonmicro.main (8.14.4/8.14.4) with ESMTP id uAEAAOYN011978; Mon, 14 Nov 2016 10:10:25 GMT Date: Mon, 14 Nov 2016 10:11:01 +0000 From: Charles Keepax To: Sylwester Nawrocki CC: , , , , , , , , , , , Subject: Re: [PATCH 0/8] DMA: s3c64xx: Conversion to the new channel request API Message-ID: <20161114101101.GK1575@localhost.localdomain> References: <1478791076-19528-1-git-send-email-s.nawrocki@samsung.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <1478791076-19528-1-git-send-email-s.nawrocki@samsung.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 priorityscore=1501 malwarescore=0 suspectscore=0 phishscore=0 bulkscore=0 spamscore=0 clxscore=1011 lowpriorityscore=0 impostorscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1609300000 definitions=main-1611140210 Sender: linux-samsung-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-samsung-soc@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP On Thu, Nov 10, 2016 at 04:17:48PM +0100, Sylwester Nawrocki wrote: > This patch series aims to convert the s3c64xx platform to use > the new DMA channel request API, i.e. this is only meaningful > for non-dt systems using s3c64xx SoCs. > > Presumably the first 2 or 4 patches in this series could be queued > for v4.10-rc1 and the remaining patches could be left for subsequent > release, to avoid non-trivial conflict with patches already applied > in the ASoC tree. > > The whole series can be pulled from git repository: > git://linuxtv.org/snawrocki/samsung.git > branch: for-v4.10/dma/pl080-s3c64xx-v2 Tested this series again still looks good to me. The code on that branch does differ from the code on the list by the following I tested the code from the list, rather than the branch. Thanks, Charles --- To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff however: --- a/drivers/dma/amba-pl08x.c +++ b/drivers/dma/amba-pl08x.c @@ -2317,7 +2317,7 @@ static int pl08x_probe(struct amba_device *adev, const struct amba_id *id) } else { pl08x->slave.filter.map = pl08x->pd->slave_map; pl08x->slave.filter.mapcnt = pl08x->pd->slave_map_len; - pl08x->slave.filter.fn = pl08x_filter_id; + pl08x->slave.filter.fn = pl08x_filter_fn; }