summaryrefslogtreecommitdiff
path: root/nuttx/drivers/net/skeleton.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-08-16 23:04:11 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-08-16 23:04:11 +0000
commitb7f44eaa4771d12c11608376c9e942932be32437 (patch)
tree41e466c4eaff7227640f487555b69aafe1819279 /nuttx/drivers/net/skeleton.c
parent9e0911ad7919c5082a699ca100f8843b8f690390 (diff)
downloadpx4-nuttx-b7f44eaa4771d12c11608376c9e942932be32437.tar.gz
px4-nuttx-b7f44eaa4771d12c11608376c9e942932be32437.tar.bz2
px4-nuttx-b7f44eaa4771d12c11608376c9e942932be32437.zip
Add beginning of an Kinetics Ethernet driver
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3886 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/drivers/net/skeleton.c')
-rw-r--r--nuttx/drivers/net/skeleton.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/nuttx/drivers/net/skeleton.c b/nuttx/drivers/net/skeleton.c
index 5956f72c6..93dd8a82a 100644
--- a/nuttx/drivers/net/skeleton.c
+++ b/nuttx/drivers/net/skeleton.c
@@ -67,7 +67,7 @@
# define CONFIG_skeleton_NINTERFACES 1
#endif
-/* TX poll deley = 1 seconds. CLK_TCK is the number of clock ticks per second */
+/* TX poll delay = 1 seconds. CLK_TCK is the number of clock ticks per second */
#define skeleton_WDDELAY (1*CLK_TCK)
#define skeleton_POLLHSEC (1*2)
@@ -355,7 +355,7 @@ static int skel_interrupt(int irq, FAR void *context)
skel_receive(skel);
- /* Check is a packet transmission just completed. If so, call skel_txdone.
+ /* Check if a packet transmission just completed. If so, call skel_txdone.
* This may disable further Tx interrupts if there are no pending
* tansmissions.
*/
@@ -504,7 +504,7 @@ static int skel_ifdown(struct uip_driver_s *dev)
wd_cancel(skel->sk_txpoll);
wd_cancel(skel->sk_txtimeout);
- /* Put the the EMAC is its reset, non-operational state. This should be
+ /* Put the EMAC in its reset, non-operational state. This should be
* a known configuration that will guarantee the skel_ifup() always
* successfully brings the interface back up.
*/
@@ -649,13 +649,13 @@ int skel_initialize(int intf)
DEBUGASSERT(inf < CONFIG_skeleton_NINTERFACES);
priv = &g_skel[intf];
- /* Check if a Ethernet chip is recognized at its I/O base */
+ /* Check if a Ethernet chip is recognized at its I/O base */
/* Attach the IRQ to the driver */
if (irq_attach(CONFIG_skeleton_IRQ, skel_interrupt))
{
- /* We could not attach the ISR to the the interrupt */
+ /* We could not attach the ISR to the interrupt */
return -EAGAIN;
}