Fix typos from Bernie's review.
authorbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Tue, 19 Feb 2008 16:56:14 +0000 (16:56 +0000)
committerbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Tue, 19 Feb 2008 16:56:14 +0000 (16:56 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1144 38d2e660-2303-0410-9eaa-f027e97ec537

cpu/attr.h
cpu/types.h
kern/kfile.c
kern/kfile.h

index 5d0ce885d10436e861e41b9ceb81d01cf418dddf..302b38c987089043a0ac7b2f8deabb6342b4f4bd 100644 (file)
                } while (0)
 
        /*
-        * If the kernel is in idle-spinning, the processor execute:
+        * If the kernel is in idle-spinning, the processor executes:
         *
         * IRQ_ENABLE;
         * CPU_IDLE;
index 187d45f14be1f08798e5f61eeeacb2489b14e0ab..be9b5fd5db6188117d098e8c46bf4373d53aef30 100644 (file)
@@ -49,7 +49,7 @@
 
        typedef uint16_t cpuflags_t; // FIXME
        typedef unsigned int cpustack_t;
-       #warning Verify following costant
+       #warning Verify following constant
        #define SIZEOF_CPUSTACK_T 2
 
 #elif CPU_X86
@@ -86,7 +86,7 @@
        typedef unsigned int cpustack_t;
        #warning Verify following costant
        #define SIZEOF_CPUSTACK_T 2
-       
+
 #elif CPU_AVR
 
        typedef uint8_t cpuflags_t;
index 750836fcd524398a8ced1b3f07bcf098a5285b5b..28adc32a95a0bfd8ead1981c5fae002f031269b9 100644 (file)
@@ -59,7 +59,7 @@
 
 
 /**
- * Generic putc implementation using \a fd->write.
+ * Generic putc() implementation using \a fd->write.
  */
 int kfile_putc(int _c, struct KFile *fd)
 {
@@ -72,7 +72,7 @@ int kfile_putc(int _c, struct KFile *fd)
 }
 
 /**
- * Generic getc implementation using \a fd->read.
+ * Generic getc() implementation using \a fd->read.
  */
 int kfile_getc(struct KFile *fd)
 {
index 60b0ad64948602502fec65ffa55621dfa546f736..4bb7a2380946748f6063e3d6bc56cc689ba0d707 100644 (file)
  *
  * \brief Virtual KFile I/O interface.
  * KFile is a generic interface for file I/O.
- * Uses an of object oriented model to supply
+ * It uses an object-oriented model to supply
  * a generic interface for drivers to communicate.
- * This module contains only definitions,data structure
+ * This module contains only definitions, the instance structure
  * and an API.
- * Each KFile user should implement at least some core functions.
+ * Each KFile user should implement at least some methods.
  * E.G.
  * If you have a serial driver and want to comply to KFile interface,
  * you have to declare your context structure:
@@ -74,7 +74,7 @@
  * \endcode
  * KFILESERIAL macro helps to ensure that obj passed is really a Serial.
  *
- * KFile interface do not supply the open function: this is done deliberately,
+ * KFile interface do not supply the open function: this is deliberate,
  * because in embedded systems each device has its own init parameters.
  * For the same reason specific file settings (like baudrate for Serial, for example)
  * are demanded to specific driver implementation.
@@ -90,6 +90,7 @@
 
 #include <cfg/compiler.h>
 #include <cfg/debug.h>
+#include <cfg/macros.h>
 
 /* fwd decl */
 struct KFile;
@@ -110,7 +111,7 @@ typedef enum KSeekMode
 
 /**
  * Prototypes for KFile access functions.
- * I/O file function must be ANSI compliant.
+ * I/O file functions must be ANSI compliant.
  * \note A KFile user can choose which function subset to implement,
  *       but has to set to NULL unimplemented features.
  * \{