From patchwork Thu May 19 22:12:48 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Muddebihal, Basheer Ahmed" X-Patchwork-Id: 12856104 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 E61A3C433F5 for ; Thu, 19 May 2022 22:13:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S245395AbiESWNf (ORCPT ); Thu, 19 May 2022 18:13:35 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34654 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S245413AbiESWNe (ORCPT ); Thu, 19 May 2022 18:13:34 -0400 Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 62126A5005; Thu, 19 May 2022 15:13:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1652998414; x=1684534414; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=uFmq/RU+MxSprUYx5V19OMcQd3bPLRLL+9B9N2X/Hlg=; b=nBlKAKG3wE2sHb+vxREiNIbCO8X6DonPvDOiWQgc3PXTak8l2MWyyvIM 5QpZXikDZu73Uvv5stWRHfYtByqT9zV/ZxAnwasplJE8yV1sJdMJWyge2 1s9ZNcVPcC9Ch1CiFB7RwSy4bWY00RCJhDDUE07J0oD4KCZ9IQZJtqpe+ oBcnSUo3ElXzqTrmKex42RCb14cGJlO0lsQtLRYJZdwSV0xQPlpNbj6Hh itcCujMRo26eIt8czR3ivrMZaemrJSk8GWOZPc+FUFWxo3mF1MZIjsZ+B 3Wa528C2S/eQcfVpcJfxb1Skdf+1VoYEtIlGV6fdQ887g+anasIm4IzcZ Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10352"; a="272097513" X-IronPort-AV: E=Sophos;i="5.91,238,1647327600"; d="scan'208";a="272097513" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 19 May 2022 15:13:32 -0700 X-IronPort-AV: E=Sophos;i="5.91,238,1647327600"; d="scan'208";a="743162376" Received: from rhweight-wrk1.ra.intel.com ([137.102.106.43]) by orsmga005-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 19 May 2022 15:13:32 -0700 From: Basheer Ahmed Muddebihal To: hao.wu@intel.com, trix@redhat.com, mdf@kernel.org, yilun.xu@intel.com, linux-fpga@vger.kernel.org, linux-kernel@vger.kernel.org Cc: matthew.gerlach@linux.intel.com, marpagan@redhat.com, tianfei.zhang@intel.com, Basheer Ahmed Muddebihal Subject: [PATCH 2/3] fpga: dfl: Fix kernel-doc warnings in include/linux/dfl.h Date: Thu, 19 May 2022 15:12:48 -0700 Message-Id: <20220519221249.858873-3-basheer.ahmed.muddebihal@linux.intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220519221249.858873-1-basheer.ahmed.muddebihal@linux.intel.com> References: <20220519221249.858873-1-basheer.ahmed.muddebihal@linux.intel.com> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-fpga@vger.kernel.org Fixed the following warnings: include/linux/dfl.h:21: warning: Enum value 'FME_ID' not described in enum 'dfl_id_type' include/linux/dfl.h:21: warning: Enum value 'PORT_ID' not described in enum 'dfl_id_type' include/linux/dfl.h:21: warning: Enum value 'DFL_ID_MAX' not described in enum 'dfl_id_type' include/linux/dfl.h:47: warning: Function parameter or member 'revision' not described in 'dfl_device' Signed-off-by: Basheer Ahmed Muddebihal --- include/linux/dfl.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/linux/dfl.h b/include/linux/dfl.h index 431636a0dc78..4caa2d99d8dc 100644 --- a/include/linux/dfl.h +++ b/include/linux/dfl.h @@ -13,6 +13,9 @@ /** * enum dfl_id_type - define the DFL FIU types + * @FME_ID: dfl id for FPGA Management Engine node. + * @PORT_ID: dfl id for Port. + * @DFL_ID_MAX: maximum number for dfl ids. */ enum dfl_id_type { FME_ID = 0, @@ -27,6 +30,7 @@ enum dfl_id_type { * @id: id of the dfl device. * @type: type of DFL FIU of the device. See enum dfl_id_type. * @feature_id: feature identifier local to its DFL FIU type. + * @revision: feature revision local to its DFL FIU type. * @mmio_res: mmio resource of this dfl device. * @irqs: list of Linux IRQ numbers of this dfl device. * @num_irqs: number of IRQs supported by this dfl device.