diff options
author | Rudy Matela <rudy.matela@gmail.com> | 2009-11-25 10:20:20 -0300 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2009-12-04 15:39:58 +0100 |
commit | 870571a2ef6fb2d6306673b4376fec93d441e013 (patch) | |
tree | da63ee272b6b651e605f3700cd61ec10f1b3b52e | |
parent | 1b35edaf9ff33ee44db24aa38060061927a89185 (diff) | |
download | op-kernel-dev-870571a2ef6fb2d6306673b4376fec93d441e013.zip op-kernel-dev-870571a2ef6fb2d6306673b4376fec93d441e013.tar.gz |
hdlc: spelling fix in find_pvc() comment
Signed-off-by: Rudy Matela <rudy.matela@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r-- | drivers/net/wan/hdlc_fr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wan/hdlc_fr.c b/drivers/net/wan/hdlc_fr.c index 840cff7..4d4c543 100644 --- a/drivers/net/wan/hdlc_fr.c +++ b/drivers/net/wan/hdlc_fr.c @@ -182,7 +182,7 @@ static inline pvc_device* find_pvc(hdlc_device *hdlc, u16 dlci) if (pvc->dlci == dlci) return pvc; if (pvc->dlci > dlci) - return NULL; /* the listed is sorted */ + return NULL; /* the list is sorted */ pvc = pvc->next; } |