From mboxrd@z Thu Jan 1 00:00:00 1970 From: York Sun Date: Mon, 4 Mar 2013 13:46:41 -0800 Subject: [U-Boot] [Patch v7] Consolidate bool type In-Reply-To: <20130304213858.GA16106@bill-the-cat> References: <1359587500-16357-1-git-send-email-yorksun@freescale.com> <20130304213858.GA16106@bill-the-cat> Message-ID: <51351641.8090501@freescale.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 03/04/2013 01:38 PM, Tom Rini wrote: > On Wed, Jan 30, 2013 at 03:11:40PM -0800, York Sun wrote: > >> 'bool' is defined in random places. This patch consolidates them into a >> single header file include/linux/types.h, using stdbool.h introduced in C99. >> >> All other #define, typedef and enum are removed. They are all consistent with >> true = 1, false = 0. >> >> Replace FALSE, False with false. Replace TRUE, True with true. >> Skip *.py, *.php, lib/* files. >> >> Signed-off-by: York Sun >> Acked-by: Allen Martin > > There was a lot of talk from v1 to v6, and nothing to v7. Is everyone > happy now? Changes from v6 to v7 is to remove RFC from the subject and add Acked-byL Allen. I didn't hear any nack for v7. York