summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/c5471/c5471_ethernet.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-12-06 23:12:48 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-12-06 23:12:48 +0000
commitcfbade791b5dfc57829dfd1ca42c9976b43128cd (patch)
treebe1a661a4065439643af895866ad46b3d4e0a215 /nuttx/arch/arm/src/c5471/c5471_ethernet.c
parentc9c4a58af6383cc524f4ebdbfaea3a117ebaf8c3 (diff)
downloadpx4-nuttx-cfbade791b5dfc57829dfd1ca42c9976b43128cd.tar.gz
px4-nuttx-cfbade791b5dfc57829dfd1ca42c9976b43128cd.tar.bz2
px4-nuttx-cfbade791b5dfc57829dfd1ca42c9976b43128cd.zip
C5471 ethernet debug
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@431 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch/arm/src/c5471/c5471_ethernet.c')
-rw-r--r--nuttx/arch/arm/src/c5471/c5471_ethernet.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/arch/arm/src/c5471/c5471_ethernet.c b/nuttx/arch/arm/src/c5471/c5471_ethernet.c
index 1d680e746..8ec28a785 100644
--- a/nuttx/arch/arm/src/c5471/c5471_ethernet.c
+++ b/nuttx/arch/arm/src/c5471/c5471_ethernet.c
@@ -1486,7 +1486,7 @@ static int c5471_interrupt(int irq, FAR void *context)
/* Handle interrupts according to status bit settings */
/* Check if we received an incoming packet, if so, call c5471_receive() */
- if (EIM_STATUS_CPU_TX & c5471->c_eimstatus)
+ if ((EIM_STATUS_CPU_TX & c5471->c_eimstatus) != 0)
{
/* An incoming packet has been received by the EIM from the network and
* the interrupt associated with EIM's CPU TX queue has been asserted. It
@@ -1508,7 +1508,7 @@ static int c5471_interrupt(int irq, FAR void *context)
/* Check is a packet transmission just completed. If so, call c5471_txdone */
- if (EIM_STATUS_CPU_RX & c5471->c_eimstatus)
+ if ((EIM_STATUS_CPU_RX & c5471->c_eimstatus) != 0)
{
/* An outgoing packet has been processed by the EIM and the interrupt
* associated with EIM's CPU RX que has been asserted. It is the EIM's