From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from tyo201.gate.nec.co.jp (TYO201.gate.nec.co.jp [202.32.8.193]) by dpdk.org (Postfix) with ESMTP id 5895268CE for ; Thu, 30 Jan 2014 12:34:14 +0100 (CET) Received: from mailgate3.nec.co.jp ([10.7.69.197]) by tyo201.gate.nec.co.jp (8.13.8/8.13.4) with ESMTP id s0UBZUgR023647; Thu, 30 Jan 2014 20:35:30 +0900 (JST) Received: from mailsv.nec.co.jp (imss61.nec.co.jp [10.7.69.156]) by mailgate3.nec.co.jp (8.11.7/3.7W-MAILGATE-NEC) with ESMTP id s0UBZUm21474; Thu, 30 Jan 2014 20:35:30 +0900 (JST) Received: from mail03.kamome.nec.co.jp (mail03.kamome.nec.co.jp [10.25.43.7]) by mailsv.nec.co.jp (8.13.8/8.13.4) with ESMTP id s0UBZUaf004070; Thu, 30 Jan 2014 20:35:30 +0900 (JST) Received: from bpxc99gp.gisp.nec.co.jp ([10.38.151.145] [10.38.151.145]) by mail03.kamome.nec.co.jp with ESMTP id BT-MMP-670458; Thu, 30 Jan 2014 20:32:39 +0900 Received: from BPXM14GP.gisp.nec.co.jp ([169.254.1.238]) by BPXC17GP.gisp.nec.co.jp ([10.38.151.145]) with mapi id 14.02.0328.011; Thu, 30 Jan 2014 20:32:39 +0900 From: Hiroshi Shimamoto To: Thomas Monjalon , "dev@dpdk.org" Thread-Topic: [memnic PATCH 3/3] common: remove double underscores Thread-Index: AQHPHZzfEN7+Ld2bX067xfebKBEpaJqdIqOw Date: Thu, 30 Jan 2014 11:32:37 +0000 Message-ID: <7F861DC0615E0C47A872E6F3C5FCDDBD0102D04E@BPXM14GP.gisp.nec.co.jp> References: In-Reply-To: Accept-Language: ja-JP, en-US Content-Language: ja-JP X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.205.5.123] Content-Type: text/plain; charset="iso-2022-jp" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [memnic PATCH 3/3] common: remove double underscores X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Jan 2014 11:34:15 -0000 Looks fine to me. thanks, Hiroshi > Subject: [memnic PATCH 3/3] common: remove double underscores >=20 > The usage of double underscores is reserved. >=20 > Signed-off-by: Thomas Monjalon > --- > common/memnic.h | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) >=20 > diff --git a/common/memnic.h b/common/memnic.h > index 58dd019..e5b3c6f 100644 > --- a/common/memnic.h > +++ b/common/memnic.h > @@ -28,8 +28,8 @@ > * > */ >=20 > -#ifndef __MEMNIC_H__ > -#define __MEMNIC_H__ > +#ifndef MEMNIC_H > +#define MEMNIC_H >=20 > #define MEMNIC_MAGIC 0x43494e76 > #define MEMNIC_VERSION 0x00000001 > @@ -135,4 +135,4 @@ static inline uint32_t cmpxchg(uint32_t *dst, uint32_= t old, uint32_t new) > } > #endif /* __KERNEL__ */ >=20 > -#endif /* __MEMNIC_H__ */ > +#endif /* MEMNIC_H */ > -- > 1.7.10.4