]> Git Repo - J-linux.git/commitdiff
plist: Fix grammar mistake, and c-style mistake
authorJohn Kacur <[email protected]>
Mon, 11 Jan 2010 20:21:06 +0000 (21:21 +0100)
committerIngo Molnar <[email protected]>
Wed, 13 Jan 2010 09:51:39 +0000 (10:51 +0100)
Signed-off-by: John Kacur <[email protected]>
Acked-by: Peter Zijlstra <[email protected]>
LKML-Reference: <1263241267[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>
include/linux/plist.h

index 8227f717c70fbf021fd16c104e2950b646ccdc6e..6898985e7b387b6d9175827641be6ad82e51f409 100644 (file)
@@ -45,7 +45,7 @@
  * the insertion of new nodes. There are no nodes with duplicate
  * priorites on the list.
  *
- * The nodes on the node_list is ordered by priority and can contain
+ * The nodes on the node_list are ordered by priority and can contain
  * entries which have the same priority. Those entries are ordered
  * FIFO
  *
@@ -265,7 +265,7 @@ static inline int plist_node_empty(const struct plist_node *node)
  *
  * Assumes the plist is _not_ empty.
  */
-static inline struct plist_nodeplist_first(const struct plist_head *head)
+static inline struct plist_node *plist_first(const struct plist_head *head)
 {
        return list_entry(head->node_list.next,
                          struct plist_node, plist.node_list);
This page took 0.047772 seconds and 4 git commands to generate.