Fix wrong identifier name in Documentation/kref.txt

There's a typo / wrong identifier name in Documentation/kref.txt. Fix it.

Signed-off-by: Satyam Sharma <ssatyam@cse.iitk.ac.in>
Acked-by: Corey Minyard <minyard@acm.org>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
This commit is contained in:
Satyam Sharma 2007-05-11 19:07:14 +02:00 committed by Adrian Bunk
parent 129a84de23
commit b7cc4a879c
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ void more_data_handling(void *cb_data)
. .
. do stuff with data here . do stuff with data here
. .
kref_put(data, data_release); kref_put(&data->refcount, data_release);
} }
int my_data_handler(void) int my_data_handler(void)