From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753982AbcHAVEF (ORCPT ); Mon, 1 Aug 2016 17:04:05 -0400 Received: from mx1.redhat.com ([209.132.183.28]:52274 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751877AbcHAVD6 (ORCPT ); Mon, 1 Aug 2016 17:03:58 -0400 From: John Pittman To: axboe@fb.com Cc: linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org, John Pittman Subject: [PATCH] Include: blkdev: Removed duplicate 'struct request;' declaration. Date: Mon, 1 Aug 2016 16:35:53 -0400 Message-Id: <1470083753-31585-1-git-send-email-jpittman@redhat.com> X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.39]); Mon, 01 Aug 2016 20:35:59 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org In include/linux/blkdev.h duplicate declarations of the request struct exist. Cleaned up by removing the second, unneeded declaration. Signed-off-by: John Pittman --- include/linux/blkdev.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index adf3307..de79359 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h @@ -47,7 +47,6 @@ struct pr_ops; */ #define BLKCG_MAX_POLS 2 -struct request; typedef void (rq_end_io_fn)(struct request *, int); #define BLK_RL_SYNCFULL (1U << 0) -- 2.5.5