diff options
| author | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-04-12 22:07:57 +0200 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-04-12 22:07:57 +0200 | 
| commit | 18122019972ca639ee3b581257e3a63ff7c8efeb (patch) | |
| tree | 52f7223e7c63f43322f3eee4722743e12190a19f /drivers/net/npe/IxEthAcc.c | |
| parent | 90639feaa0d66a204f9d03a325ab14e2f97f6cbb (diff) | |
| parent | 785881f775252940185e10fbb2d5299c9ffa6bce (diff) | |
| download | olio-uboot-2014.01-18122019972ca639ee3b581257e3a63ff7c8efeb.tar.xz olio-uboot-2014.01-18122019972ca639ee3b581257e3a63ff7c8efeb.zip | |
Merge branch 'u-boot/master' into 'u-boot-arm/master'
Conflicts:
	drivers/video/exynos_fb.c
Diffstat (limited to 'drivers/net/npe/IxEthAcc.c')
| -rw-r--r-- | drivers/net/npe/IxEthAcc.c | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/drivers/net/npe/IxEthAcc.c b/drivers/net/npe/IxEthAcc.c index 20d3d9e9b..718555895 100644 --- a/drivers/net/npe/IxEthAcc.c +++ b/drivers/net/npe/IxEthAcc.c @@ -82,7 +82,7 @@ extern PUBLIC IxOsalMutex ixEthAccControlInterfaceMutex;   * @ingroup IxEthAccPri   *   */ -BOOL ixEthAccServiceInit = FALSE; +BOOL ixEthAccServiceInit = false;  /* global filtering bit mask */  PUBLIC UINT32 ixEthAccNewSrcMask; @@ -168,7 +168,7 @@ PUBLIC IxEthAccStatus ixEthAccInit()     }     /* initialiasation is complete */ -   ixEthAccServiceInit = TRUE; +   ixEthAccServiceInit = true;     return IX_ETH_ACC_SUCCESS; @@ -200,11 +200,11 @@ PUBLIC void ixEthAccUnload(void)         /* set all ports as uninitialized */         for (portId = 0; portId < IX_ETH_ACC_NUMBER_OF_PORTS; portId++)         { -	       ixEthAccPortData[portId].portInitialized = FALSE; +	       ixEthAccPortData[portId].portInitialized = false;         }         /* uninitialize the service */ -       ixEthAccServiceInit = FALSE; +       ixEthAccServiceInit = false;     }  } @@ -248,7 +248,7 @@ PUBLIC IxEthAccStatus ixEthAccPortInit( IxEthAccPortId portId)       * Set the port init flag.       */ -    ixEthAccPortData[portId].portInitialized = TRUE; +    ixEthAccPortData[portId].portInitialized = true;  #ifdef CONFIG_IXP425_COMPONENT_ETHDB      /* init learning/filtering database structures for this port */ |