From patchwork Thu Mar 8 23:28:50 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bart Van Assche X-Patchwork-Id: 10269403 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 9627E6016D for ; Thu, 8 Mar 2018 23:28:52 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 8BFC6237F1 for ; Thu, 8 Mar 2018 23:28:52 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 8099C28554; Thu, 8 Mar 2018 23:28:52 +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.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID 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 F41B9237F1 for ; Thu, 8 Mar 2018 23:28:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750800AbeCHX2v (ORCPT ); Thu, 8 Mar 2018 18:28:51 -0500 Received: from esa1.hgst.iphmx.com ([68.232.141.245]:34761 "EHLO esa1.hgst.iphmx.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750783AbeCHX2u (ORCPT ); Thu, 8 Mar 2018 18:28:50 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=wdc.com; i=@wdc.com; q=dns/txt; s=dkim.wdc.com; t=1520551730; x=1552087730; h=from:to:cc:subject:date:message-id; bh=KXEwijZRP4wTYulvnZ6zggL0xFuAPZSMIihgjjR4hUs=; b=k9pcWl+mFLwPGWbN46nQeGeoJuSUVl0ns9/4q6kiNZ6aj8tK5ADt2sOu 4Uv7PTojrynApFOIoQ7p1Jj1itEWm2zXuH+XLE77JpCGegpzFwFA3RzZ3 4ET79KnsxYgj7Ot2gtV8G49YrlyJJUIRvq/dTlhwreYAhGJxEX03H/nEy mMouzZfNVw8o3trYe8gZxmdrERidoffnP+oe6cCrsy9h+JMe40V0zBYH7 18vC0IjQIdhWCg5TgXBFPsMXdDia4W3shcToSBsrkD2xX/+ElQByWXXNZ RypYWeto3CxO64/nT5JJfxDjT1WzQx2o9iH/msQz1h1+X+yyl24csO/6X w==; X-IronPort-AV: E=Sophos;i="5.47,443,1515427200"; d="scan'208";a="176265904" Received: from uls-op-cesaip01.wdc.com (HELO uls-op-cesaep01.wdc.com) ([199.255.45.14]) by ob1.hgst.iphmx.com with ESMTP; 09 Mar 2018 07:28:50 +0800 Received: from uls-op-cesaip02.wdc.com ([10.248.3.37]) by uls-op-cesaep01.wdc.com with ESMTP; 08 Mar 2018 15:22:39 -0800 Received: from thinkpad-bart.sdcorp.global.sandisk.com (HELO thinkpad-bart.int.fusionio.com) ([10.11.171.236]) by uls-op-cesaip02.wdc.com with ESMTP; 08 Mar 2018 15:28:50 -0800 From: Bart Van Assche To: Jens Axboe Cc: linux-block@vger.kernel.org, Christoph Hellwig , Bart Van Assche , Damien Le Moal Subject: [PATCH] block: Suppress kernel-doc warnings triggered by blk-zoned.c Date: Thu, 8 Mar 2018 15:28:50 -0800 Message-Id: <20180308232850.8934-1-bart.vanassche@wdc.com> X-Mailer: git-send-email 2.16.2 Sender: linux-block-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-block@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Avoid that building with W=1 causes the kernel-doc tool to complain about undocumented function arguments for the blk-zoned.c source file. Signed-off-by: Bart Van Assche Cc: Christoph Hellwig Cc: Damien Le Moal --- block/blk-zoned.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/block/blk-zoned.c b/block/blk-zoned.c index acb7252c7e81..08e84ef2bc05 100644 --- a/block/blk-zoned.c +++ b/block/blk-zoned.c @@ -296,7 +296,7 @@ int blkdev_reset_zones(struct block_device *bdev, } EXPORT_SYMBOL_GPL(blkdev_reset_zones); -/** +/* * BLKREPORTZONE ioctl processing. * Called from blkdev_ioctl. */ @@ -355,7 +355,7 @@ int blkdev_report_zones_ioctl(struct block_device *bdev, fmode_t mode, return ret; } -/** +/* * BLKRESETZONE ioctl processing. * Called from blkdev_ioctl. */