]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - scripts/basic/docproc.c
[WATCHDOG] ks8695_wdt.c - new KS8695 watchdog driver
[linux-2.6-omap-h63xx.git] / scripts / basic / docproc.c
index cb02baa63256ba691501ac65ddea70cadb1112c4..f4d2f68452baa8860769b7ac9cecac75747d6118 100644 (file)
@@ -177,6 +177,7 @@ void find_export_symbols(char * filename)
                {
                        fprintf(stderr, "docproc: ");
                        perror(real_filename);
+                       exit(1);
                }
                while(fgets(line, MAXLINESZ, fp)) {
                        char *p;
@@ -210,7 +211,7 @@ void find_export_symbols(char * filename)
  * Document all external or internal functions in a file.
  * Call kernel-doc with following parameters:
  * kernel-doc -docbook -nofunction function_name1 filename
- * function names are obtained from all the the src files
+ * function names are obtained from all the src files
  * by find_export_symbols.
  * intfunc uses -nofunction
  * extfunc uses -function
@@ -249,7 +250,7 @@ void intfunc(char * filename) {     docfunctions(filename, NOFUNCTION); }
 void extfunc(char * filename) { docfunctions(filename, FUNCTION);   }
 
 /*
- * Document spåecific function(s) in a file.
+ * Document specific function(s) in a file.
  * Call kernel-doc with the following parameters:
  * kernel-doc -docbook -function function1 [-function function2]
  */