2009-12-26 17:05:27

by Rolf Eike Beer

[permalink] [raw]
Subject: [PATCH] [KFIFO] Fix typo in comment

>From 0daa838f60cb4ebf41885155f3144711f14a05c8 Mon Sep 17 00:00:00 2001
From: Rolf Eike Beer <[email protected]>
Date: Sat, 26 Dec 2009 17:58:11 +0100
Subject: [PATCH] [KFIFO] Fix typo in comment

It's DECLARE_KFIFO, not DECLARED_KFIFO.

Signed-off-by: Rolf Eike Beer <[email protected]>
---
include/linux/kfifo.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/linux/kfifo.h b/include/linux/kfifo.h
index 3d44e9c..7c6b32a 100644
--- a/include/linux/kfifo.h
+++ b/include/linux/kfifo.h
@@ -81,7 +81,7 @@ union { \
}

/**
- * INIT_KFIFO - Initialize a kfifo declared by DECLARED_KFIFO
+ * INIT_KFIFO - Initialize a kfifo declared by DECLARE_KFIFO
* @name: name of the declared kfifo datatype
*/
#define INIT_KFIFO(name) \
--
1.6.4.2