From patchwork Thu Dec 21 13:33:16 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Uwe_Kleine-K=C3=B6nig?= X-Patchwork-Id: 10127685 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 991416019C for ; Thu, 21 Dec 2017 13:52:14 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 87CEB29C91 for ; Thu, 21 Dec 2017 13:52:14 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 7CF0C29C98; Thu, 21 Dec 2017 13:52:14 +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.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI 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 91EAD29C91 for ; Thu, 21 Dec 2017 13:52:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752958AbdLUNwK (ORCPT ); Thu, 21 Dec 2017 08:52:10 -0500 Received: from metis.ext.4.pengutronix.de ([92.198.50.35]:40169 "EHLO metis.ext.4.pengutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751808AbdLUNwK (ORCPT ); Thu, 21 Dec 2017 08:52:10 -0500 Received: from pty.hi.pengutronix.de ([2001:67c:670:100:1d::c5]) by metis.ext.pengutronix.de with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1eS1Ga-0001MT-K8; Thu, 21 Dec 2017 14:52:08 +0100 Received: from ukl by pty.hi.pengutronix.de with local (Exim 4.89) (envelope-from ) id 1eS0yQ-0000Mv-Iv; Thu, 21 Dec 2017 14:33:22 +0100 From: =?UTF-8?q?Uwe=20Kleine-K=C3=B6nig?= To: Chris Ball Cc: linux-mmc@vger.kernel.org, kernel@pengutronix.de Subject: [PATCH mmc-utils 6/6] mmc-utils: remove unused #includes Date: Thu, 21 Dec 2017 14:33:16 +0100 Message-Id: <20171221133316.19466-7-u.kleine-koenig@pengutronix.de> X-Mailer: git-send-email 2.15.1 In-Reply-To: <20171221133316.19466-1-u.kleine-koenig@pengutronix.de> References: <20171221133316.19466-1-u.kleine-koenig@pengutronix.de> X-SA-Exim-Connect-IP: 2001:67c:670:100:1d::c5 X-SA-Exim-Mail-From: ukl@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: linux-mmc@vger.kernel.org Sender: linux-mmc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-mmc@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP I didn't find any functions used for which the documentation specifies to use (at least) one of the dropped headers. The only Linux specific header is needed for BLKGETSIZE, document that. --- mmc_cmds.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/mmc_cmds.c b/mmc_cmds.c index cec947da1d4a..038dbd42e6bf 100644 --- a/mmc_cmds.c +++ b/mmc_cmds.c @@ -22,17 +22,13 @@ #include #include #include -#include #include #include #include -#include -#include -#include #include #include #include -#include +#include /* for BLKGETSIZE */ #include "mmc.h" #include "mmc_cmds.h"