From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from userp2120.oracle.com ([156.151.31.85]:57672 "EHLO userp2120.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727540AbeGPHdj (ORCPT ); Mon, 16 Jul 2018 03:33:39 -0400 From: Shan Hai To: hch@lst.de Cc: linux-fsdevel@vger.kernel.org Subject: [PATCH 1/1] iomap: simplify header file include guard macro definition Date: Mon, 16 Jul 2018 15:07:16 +0800 Message-Id: <1531724836-7944-1-git-send-email-shan.hai@oracle.com> Sender: linux-fsdevel-owner@vger.kernel.org List-ID: The simple definition of a macro is enough for the include guard, it's not necessary to assign a value to it, so remove the assignment. Signed-off-by: Shan Hai --- include/linux/iomap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/iomap.h b/include/linux/iomap.h index a044a82..25aa7d8 100644 --- a/include/linux/iomap.h +++ b/include/linux/iomap.h @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 */ #ifndef LINUX_IOMAP_H -#define LINUX_IOMAP_H 1 +#define LINUX_IOMAP_H #include -- 2.7.4