summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-03-08 18:58:01 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-03-08 18:58:01 +0000
commit4e0cda19a741a8006d00e69428b46ea3379498ad (patch)
tree35684415e6e0075584a8b63c0574810915a9f42a
parent940a006b421f0a190b8739ef231d9aef45c9f2a5 (diff)
downloadnuttx-4e0cda19a741a8006d00e69428b46ea3379498ad.tar.gz
nuttx-4e0cda19a741a8006d00e69428b46ea3379498ad.tar.bz2
nuttx-4e0cda19a741a8006d00e69428b46ea3379498ad.zip
cosmetic
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1577 42af7a65-404d-4744-a932-0658087f49c3
-rw-r--r--nuttx/arch/z80/src/ez80/ez80f91_emac.h2
-rw-r--r--nuttx/net/connect.c4
-rw-r--r--nuttx/net/uip/uip_poll.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/nuttx/arch/z80/src/ez80/ez80f91_emac.h b/nuttx/arch/z80/src/ez80/ez80f91_emac.h
index ed01f3a14..eee5a4571 100644
--- a/nuttx/arch/z80/src/ez80/ez80f91_emac.h
+++ b/nuttx/arch/z80/src/ez80/ez80f91_emac.h
@@ -196,7 +196,7 @@
#define EMAC_TXDESC_HUGE 0x1000 /* Bit 12: 1=Packet size is very large(Pkt_Size > MAXF). */
#define EMAC_TXDESC_BPA 0x2000 /* Bit 13: 1=Back pressure applied */
#define EMAC_TXDESC_ABORT 0x4000 /* Bit 14: 1=Packet aborted (not transmitted). */
-#define EMAC_TXDESC_OWNER 0x8000 /* Bit 15: 0=Host (eZ80®) owns, 1=EMAC owns. */
+#define EMAC_TXDESC_OWNER 0x8000 /* Bit 15: 0=Host (eZ80 CPU) owns, 1=EMAC owns. */
/* Receive Descriptor Status ********************************************************/
diff --git a/nuttx/net/connect.c b/nuttx/net/connect.c
index b10f8a2fc..9f9818d33 100644
--- a/nuttx/net/connect.c
+++ b/nuttx/net/connect.c
@@ -1,7 +1,7 @@
/****************************************************************************
* net/connect.c
*
- * Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2007-2009 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -144,7 +144,7 @@ static void connection_event(struct uip_conn *conn, uint16 flags)
#ifdef CONFIG_NET_TCP
static inline int tcp_setup_callbacks(FAR struct socket *psock,
- FAR struct tcp_connect_s *pstate)
+ FAR struct tcp_connect_s *pstate)
{
FAR struct uip_conn *conn = psock->s_conn;
int ret = -EBUSY;
diff --git a/nuttx/net/uip/uip_poll.c b/nuttx/net/uip/uip_poll.c
index bec184d24..5713af909 100644
--- a/nuttx/net/uip/uip_poll.c
+++ b/nuttx/net/uip/uip_poll.c
@@ -1,7 +1,7 @@
/****************************************************************************
* net/uip/uip_poll.c
*
- * Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2007-2009 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without