[Devel] [PATCH 1/1] device control: fix trivial typo

Serge E. Hallyn serue at us.ibm.com
Mon Feb 11 09:00:32 PST 2008


>From a6b0f68be3155f9b3634d28cb531c19329d56b7a Mon Sep 17 00:00:00 2001
From: Serge Hallyn <serue at us.ibm.com>
Date: Mon, 11 Feb 2008 08:58:27 -0800
Subject: [PATCH 1/1] device control: fix trivial typo

add missing word 'struct' in two lines.

Signed-off-by: Serge Hallyn <serue at us.ibm.com>
---
 include/linux/devscontrol.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/linux/devscontrol.h b/include/linux/devscontrol.h
index 38057b9..ae5f801 100644
--- a/include/linux/devscontrol.h
+++ b/include/linux/devscontrol.h
@@ -13,12 +13,12 @@ struct task_struct;
 struct kobj_map *task_cdev_map(struct task_struct *);
 struct kobj_map *task_bdev_map(struct task_struct *);
 #else
-static inline kobj_map *task_cdev_map(struct task_struct *tsk)
+static inline struct kobj_map *task_cdev_map(struct task_struct *tsk)
 {
 	return NULL;
 }
 
-static inline kobj_map *task_bdev_map(struct task_struct *tsk)
+static inline struct kobj_map *task_bdev_map(struct task_struct *tsk)
 {
 	return NULL;
 }
-- 
1.5.1

_______________________________________________
Containers mailing list
Containers at lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/containers




More information about the Devel mailing list