Consolidate bool type
'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 <yorksun@freescale.com>
This commit is contained in:
@@ -383,7 +383,7 @@ unsigned int memoryGetDeviceWidth (DEVICE device)
|
||||
* OUTPUT:
|
||||
* None.
|
||||
* RETURN:
|
||||
* False for invalid size, true otherwise.
|
||||
* false for invalid size, true otherwise.
|
||||
*
|
||||
* CAUTION: PCI_functions must be implemented later To_do !!!!!!!!!!!!!!!!!
|
||||
*
|
||||
@@ -509,7 +509,7 @@ bool memoryMapBank (MEMORY_BANK bank, unsigned int bankBase,
|
||||
* None.
|
||||
*
|
||||
* RETURN:
|
||||
* False for invalid size, true otherwise.
|
||||
* false for invalid size, true otherwise.
|
||||
*
|
||||
* CAUTION: PCI_functions must be implemented later To_do !!!!!!!!!!!!!!!!!
|
||||
*
|
||||
@@ -624,7 +624,7 @@ bool memoryMapDeviceSpace (DEVICE device, unsigned int deviceBase,
|
||||
* None.
|
||||
*
|
||||
* RETURN:
|
||||
* False for invalid size, true otherwise.
|
||||
* false for invalid size, true otherwise.
|
||||
*
|
||||
*******************************************************************************/
|
||||
bool memorySetPciWindow (PCI_MEM_WINDOW pciWindow, unsigned int pciWindowBase,
|
||||
@@ -885,7 +885,7 @@ void gtMemorySetInternalSramBaseAddr (unsigned int sramBaseAddress)
|
||||
* None.
|
||||
*
|
||||
* RETURN:
|
||||
* False for invalid size, true otherwise.
|
||||
* false for invalid size, true otherwise.
|
||||
*
|
||||
*******************************************************************************/
|
||||
bool memorySetProtectRegion (MEMORY_PROTECT_WINDOW window,
|
||||
@@ -1380,7 +1380,7 @@ void MemoryEnableWindow (MEMORY_WINDOW window)
|
||||
* OUTPUT:
|
||||
* None.
|
||||
* RETURN:
|
||||
* True for a closed window, false otherwise .
|
||||
* true for a closed window, false otherwise .
|
||||
*******************************************************************************/
|
||||
MEMORY_WINDOW_STATUS MemoryGetMemWindowStatus (MEMORY_WINDOW window)
|
||||
{
|
||||
|
||||
@@ -966,7 +966,7 @@ static int galmpsc_set_snoop (int mpsc, int value)
|
||||
* None.
|
||||
*
|
||||
* RETURN:
|
||||
* True for success, false otherwise.
|
||||
* true for success, false otherwise.
|
||||
*
|
||||
*******************************************************************************/
|
||||
|
||||
|
||||
@@ -46,13 +46,6 @@
|
||||
**************************************************************************
|
||||
**************************************************************************
|
||||
*************************************************************************/
|
||||
#ifndef TRUE
|
||||
#define TRUE 1
|
||||
#endif
|
||||
#ifndef FALSE
|
||||
#define FALSE 0
|
||||
#endif
|
||||
|
||||
/* In case not using SG on Tx, define MAX_SKB_FRAGS as 0 */
|
||||
#ifndef MAX_SKB_FRAGS
|
||||
#define MAX_SKB_FRAGS 0
|
||||
|
||||
@@ -966,7 +966,7 @@ static int galmpsc_set_snoop (int mpsc, int value)
|
||||
* None.
|
||||
*
|
||||
* RETURN:
|
||||
* True for success, false otherwise.
|
||||
* true for success, false otherwise.
|
||||
*
|
||||
*******************************************************************************/
|
||||
|
||||
|
||||
@@ -47,13 +47,6 @@
|
||||
**************************************************************************
|
||||
**************************************************************************
|
||||
*************************************************************************/
|
||||
#ifndef TRUE
|
||||
#define TRUE 1
|
||||
#endif
|
||||
#ifndef FALSE
|
||||
#define FALSE 0
|
||||
#endif
|
||||
|
||||
/* In case not using SG on Tx, define MAX_SKB_FRAGS as 0 */
|
||||
#ifndef MAX_SKB_FRAGS
|
||||
#define MAX_SKB_FRAGS 0
|
||||
|
||||
@@ -91,11 +91,6 @@ extern unsigned int INTERNAL_REG_BASE_ADDR;
|
||||
#define _1G 0x40000000
|
||||
#define _2G 0x80000000
|
||||
|
||||
#ifndef BOOL_WAS_DEFINED
|
||||
#define BOOL_WAS_DEFINED
|
||||
typedef enum _bool{false,true} bool;
|
||||
#endif
|
||||
|
||||
/* Little to Big endian conversion macros */
|
||||
|
||||
#ifdef LE /* Little Endian */
|
||||
|
||||
Reference in New Issue
Block a user