From: Rudy Matela Date: Wed, 25 Nov 2009 13:20:20 +0000 (-0300) Subject: hdlc: spelling fix in find_pvc() comment X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=870571a2ef6fb2d6306673b4376fec93d441e013;p=mv-sheeva.git hdlc: spelling fix in find_pvc() comment Signed-off-by: Rudy Matela Signed-off-by: Jiri Kosina --- diff --git a/drivers/net/wan/hdlc_fr.c b/drivers/net/wan/hdlc_fr.c index 840cff72a0f..4d4c543c146 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; }