From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 9F870C433F5 for ; Tue, 21 Dec 2021 09:20:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=ZqUX+/va5G8syUIUDN5RJX6FnNeA164tHy3lxf5Blvc=; b=R8NlF9WxFSb5Fl 2M4ikeCeeGBs1/Ao3Mq/eSFBBl/HZJgZFdgQJyY7883WC1OHsmIqzzaXDuQZl/aLNbR8e3J1jEc9F MU9Va4NsnCRWOrDtE7799HClrUHnb5Re1I/cTTLG67sp/YBJnfr8LcCmqjqG9pg/qIIgc4PjzSJp+ BdMZ+z24q3qjX2VqR2Ae/Wt3BOYMvfs/SIKPKUtP/cp7U3HQYByIhv6h5pGB09qBJZGlSCabjd/RH A6hILMvXDVcUa+6vqiN3gMhN2NHakQGAJ7eomepRaWrLq0Nq7/XPLvZvPgEsjQHafBMQX5gEsRpm7 IQEyPlKNxeAO4r2cTtfA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1mzbIY-0065T4-Pm; Tue, 21 Dec 2021 09:19:06 +0000 Received: from ams.source.kernel.org ([2604:1380:4601:e00::1]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1mzbHP-006525-NQ for linux-arm-kernel@lists.infradead.org; Tue, 21 Dec 2021 09:17:57 +0000 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 9ED1DB8122F; Tue, 21 Dec 2021 09:17:53 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id CFC26C36AE7; Tue, 21 Dec 2021 09:17:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1640078272; bh=q51t2NzmRXmbdnp6VDfo3lr2QfxI4hCXCyzNd96iEVA=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=D1+q+4O/Nru5Xthl5rallBW22GoOZFK7gEo4GZ9ElI34MixjRWwW/lye4u+YUrSMr 4cYWGSulXOJxfJo+LdDEU9D9S+xsMkW4BdaC3/RneY30AFGk59ZyQ8cVn24REfQvsi LJYSoLu2aExFlAKtSeGjtu24VTDXsqe+XBFnIqjI= Date: Tue, 21 Dec 2021 10:17:49 +0100 From: Greg KH To: Ronak Jain Cc: michal.simek@xilinx.com, linux-kernel@vger.kernel.org, rajan.vaja@xilinx.com, corbet@lwn.net, linux-arm-kernel@lists.infradead.org, arnd@arndb.de, lakshmi.sai.krishna.potthuri@xilinx.com Subject: Re: [PATCH v4 1/3] firmware: xilinx: Add support for runtime features Message-ID: References: <20211206112101.24955-1-ronak.jain@xilinx.com> <20211206112101.24955-2-ronak.jain@xilinx.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20211206112101.24955-2-ronak.jain@xilinx.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20211221_011755_938935_D847D6C5 X-CRM114-Status: GOOD ( 12.90 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Mon, Dec 06, 2021 at 03:20:59AM -0800, Ronak Jain wrote: > Add support for runtime features by using an IOCTL call. The features > can be enabled or disabled from the firmware as well as the features > can be configured at runtime by querying IOCTL_SET_FEATURE_CONFIG id. > Similarly, the user can get the configured values of features by > querying IOCTL_GET_FEATURE_CONFIG id. > > Signed-off-by: Ronak Jain > --- > Changes in v4: > - Update commit message > > Changes in v3: > - Resolved merged conflict > > Changes in v2: > - Resolved merged conflict > - Update commit message > --- > drivers/firmware/xilinx/zynqmp.c | 27 +++++++++++++++++++++++++++ > include/linux/firmware/xlnx-zynqmp.h | 25 +++++++++++++++++++++++++ > 2 files changed, 52 insertions(+) I still get merge conflicts with this change: checking file drivers/firmware/xilinx/zynqmp.c Hunk #1 succeeded at 1156 (offset 27 lines). checking file include/linux/firmware/xlnx-zynqmp.h Hunk #1 FAILED at 126. Hunk #2 succeeded at 376 (offset 17 lines). Hunk #3 FAILED at 435. Hunk #4 succeeded at 697 (offset 31 lines). 2 out of 4 hunks FAILED What branch/tree are you making it against? thanks, greg k-h _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id E9F15C433EF for ; Tue, 21 Dec 2021 09:17:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236248AbhLUJR4 (ORCPT ); Tue, 21 Dec 2021 04:17:56 -0500 Received: from ams.source.kernel.org ([145.40.68.75]:41722 "EHLO ams.source.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236229AbhLUJRy (ORCPT ); Tue, 21 Dec 2021 04:17:54 -0500 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 9A042B81219 for ; Tue, 21 Dec 2021 09:17:53 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id CFC26C36AE7; Tue, 21 Dec 2021 09:17:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1640078272; bh=q51t2NzmRXmbdnp6VDfo3lr2QfxI4hCXCyzNd96iEVA=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=D1+q+4O/Nru5Xthl5rallBW22GoOZFK7gEo4GZ9ElI34MixjRWwW/lye4u+YUrSMr 4cYWGSulXOJxfJo+LdDEU9D9S+xsMkW4BdaC3/RneY30AFGk59ZyQ8cVn24REfQvsi LJYSoLu2aExFlAKtSeGjtu24VTDXsqe+XBFnIqjI= Date: Tue, 21 Dec 2021 10:17:49 +0100 From: Greg KH To: Ronak Jain Cc: michal.simek@xilinx.com, linux-kernel@vger.kernel.org, rajan.vaja@xilinx.com, corbet@lwn.net, linux-arm-kernel@lists.infradead.org, arnd@arndb.de, lakshmi.sai.krishna.potthuri@xilinx.com Subject: Re: [PATCH v4 1/3] firmware: xilinx: Add support for runtime features Message-ID: References: <20211206112101.24955-1-ronak.jain@xilinx.com> <20211206112101.24955-2-ronak.jain@xilinx.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20211206112101.24955-2-ronak.jain@xilinx.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Dec 06, 2021 at 03:20:59AM -0800, Ronak Jain wrote: > Add support for runtime features by using an IOCTL call. The features > can be enabled or disabled from the firmware as well as the features > can be configured at runtime by querying IOCTL_SET_FEATURE_CONFIG id. > Similarly, the user can get the configured values of features by > querying IOCTL_GET_FEATURE_CONFIG id. > > Signed-off-by: Ronak Jain > --- > Changes in v4: > - Update commit message > > Changes in v3: > - Resolved merged conflict > > Changes in v2: > - Resolved merged conflict > - Update commit message > --- > drivers/firmware/xilinx/zynqmp.c | 27 +++++++++++++++++++++++++++ > include/linux/firmware/xlnx-zynqmp.h | 25 +++++++++++++++++++++++++ > 2 files changed, 52 insertions(+) I still get merge conflicts with this change: checking file drivers/firmware/xilinx/zynqmp.c Hunk #1 succeeded at 1156 (offset 27 lines). checking file include/linux/firmware/xlnx-zynqmp.h Hunk #1 FAILED at 126. Hunk #2 succeeded at 376 (offset 17 lines). Hunk #3 FAILED at 435. Hunk #4 succeeded at 697 (offset 31 lines). 2 out of 4 hunks FAILED What branch/tree are you making it against? thanks, greg k-h