Some fixes for typos in recent changes to Kconfig files

This commit is contained in:
Gregory Nutt
2014-01-16 16:37:23 -06:00
parent 90974e2b0b
commit 94fb69459b
4 changed files with 18 additions and 4 deletions
+6
View File
@@ -316,6 +316,12 @@
# ifndef CONFIG_NET_TCP_WRITE_BUFSIZE
# define CONFIG_NET_TCP_WRITE_BUFSIZE UIP_TCP_MSS
# endif
/* The size of the write buffer should not exceed the maximum TCP MSS */
# if CONFIG_NET_TCP_WRITE_BUFSIZE > UIP_TCP_MSS
# error CONFIG_NET_TCP_WRITE_BUFSIZE must not exceed UIP_TCP_MSS
# endif
#else