From patchwork Wed Feb 5 16:00:21 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vinod Koul X-Patchwork-Id: 11366603 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 5598D112B for ; Wed, 5 Feb 2020 16:00:27 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 33D4220702 for ; Wed, 5 Feb 2020 16:00:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1580918427; bh=5n48n/+OAPherCXDe5xUSgmLMSiX8vRhB9CPtYCE74g=; h=Date:From:To:Cc:Subject:List-ID:From; b=OQyTr1uXirdp8oqLIJujoUAskBm8udf+mW8tvz6umolvUk4uKw2oBOF/5SAJU+mQZ AcsqHur4RMSzH80chhK0KAINzKAX9axzPQS7G0rX2tE8PHhe5G4RUv5nskcLGdRjYT 8uP2xcp0nCxvz/DfcSog506fm3q9ttyOsWUvHkX8= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727398AbgBEQA0 (ORCPT ); Wed, 5 Feb 2020 11:00:26 -0500 Received: from mail.kernel.org ([198.145.29.99]:35438 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726661AbgBEQA0 (ORCPT ); Wed, 5 Feb 2020 11:00:26 -0500 Received: from localhost (unknown [122.178.239.37]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 4922E217BA; Wed, 5 Feb 2020 16:00:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1580918426; bh=5n48n/+OAPherCXDe5xUSgmLMSiX8vRhB9CPtYCE74g=; h=Date:From:To:Cc:Subject:From; b=NVAJQONiMOM1z7OAABC7HAxWgUNJyYtd+RCV+qxhPOoHZn3ppONL/l+dLNIO8sqCl WtwnYsh1QISFWOtOLz7dzwLbK/OHOYVsrxpll08tFmvSzjr+4TftnbnK1hIvlbRX+k p6/Ns0E/y4R7Np8VHjBlR8ln3Nr/o2ihBKORDg30= Date: Wed, 5 Feb 2020 21:30:21 +0530 From: Vinod Koul To: Linus Torvalds Cc: dma , LKML Subject: [GIT PULL] dmaengine fixes for v5.6-rc1 Message-ID: <20200205160021.GL2618@vkoul-mobl> MIME-Version: 1.0 Content-Disposition: inline Sender: dmaengine-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: dmaengine@vger.kernel.org Hello Linus, Couple of fixes came for the earlier dmaengine pull request for v5.6-rc1, so here is the pull request with fixes. Please pull. The following changes since commit 71723a96b8b1367fefc18f60025dae792477d602: dmaengine: Create symlinks between DMA channels and slaves (2020-01-24 11:41:32 +0530) are available in the Git repository at: git://git.infradead.org/users/vkoul/slave-dma.git tags/dmaengine-fix-5.6-rc1 for you to fetch changes up to bad83565eafe8a00922ad4eed6920625a10a2126: dmaengine: Cleanups for the slave <-> channel symlink support (2020-02-03 09:49:20 +0530) ---------------------------------------------------------------- dmaengine fixes for v5.6-rc1 Fixes for: - Documentation build error fix - Fix dma_request_chan() error return - Remove unneeded conversion in idxd driver - Fix pointer check for dma_async_device_channel_register() - Fix slave-channel symlink cleanup ---------------------------------------------------------------- Dave Jiang (1): dmaengine: fix null ptr check for __dma_async_device_channel_register() Marek Szyprowski (1): dmaengine: Fix return value for dma_request_chan() in case of failure Peter Ujfalusi (1): dmaengine: Cleanups for the slave <-> channel symlink support Vinod Koul (1): dmaengine: doc: Properly indent metadata title kbuild test robot (1): dmaengine: idxd: fix boolconv.cocci warnings Documentation/driver-api/dmaengine/client.rst | 4 ++-- drivers/dma/dmaengine.c | 21 ++++++++++++--------- drivers/dma/idxd/sysfs.c | 2 +- 3 files changed, 15 insertions(+), 12 deletions(-) Thanks