From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753318AbcHZLMB (ORCPT ); Fri, 26 Aug 2016 07:12:01 -0400 Received: from mail-wm0-f68.google.com ([74.125.82.68]:34136 "EHLO mail-wm0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753228AbcHZLL5 (ORCPT ); Fri, 26 Aug 2016 07:11:57 -0400 From: LABBE Corentin To: mpm@selenic.com, herbert@gondor.apana.org.au, linux-crypto@vger.kernel.org Cc: linux-kernel@vger.kernel.org, LABBE Corentin Subject: [PATCH v3 4/8] hwrng: amd: Remove asm/io.h Date: Fri, 26 Aug 2016 13:11:32 +0200 Message-Id: <1472209896-17197-5-git-send-email-clabbe.montjoie@gmail.com> X-Mailer: git-send-email 2.7.3 In-Reply-To: <1472209896-17197-1-git-send-email-clabbe.montjoie@gmail.com> References: <1472209896-17197-1-git-send-email-clabbe.montjoie@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org checkpatch complains about used instead of linux/io.h. In fact it is not needed. This patch remove it, and in the process, alphabetize the other headers. Signed-off-by: LABBE Corentin --- drivers/char/hw_random/amd-rng.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/drivers/char/hw_random/amd-rng.c b/drivers/char/hw_random/amd-rng.c index 93157af..de82fe3 100644 --- a/drivers/char/hw_random/amd-rng.c +++ b/drivers/char/hw_random/amd-rng.c @@ -24,12 +24,11 @@ * warranty of any kind, whether express or implied. */ -#include +#include +#include #include +#include #include -#include -#include -#include #define DRV_NAME "AMD768-HWRNG" -- 2.7.3