diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-11 19:30:00 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-11 19:30:00 +0200 |
commit | 1f8a6b658a943b4f04a1fc7b3a420360202c86cd (patch) | |
tree | b1edcfde47fcef004ca2c2901ed98d915ac00dbd /Documentation | |
parent | Merge branch 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-ip22 (diff) | |
parent | further UTF-8 fixes and name correction (diff) | |
download | linux-1f8a6b658a943b4f04a1fc7b3a420360202c86cd.tar.xz linux-1f8a6b658a943b4f04a1fc7b3a420360202c86cd.zip |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/bunk/trivial
* git://git.kernel.org/pub/scm/linux/kernel/git/bunk/trivial:
further UTF-8 fixes and name correction
Fix wrong identifier name in Documentation/kref.txt
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/kref.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/kref.txt b/Documentation/kref.txt index 42fe28445916..f38b59d00c63 100644 --- a/Documentation/kref.txt +++ b/Documentation/kref.txt @@ -67,7 +67,7 @@ void more_data_handling(void *cb_data) . . do stuff with data here . - kref_put(data, data_release); + kref_put(&data->refcount, data_release); } int my_data_handler(void) |