From: <aot...@us...> - 2004-07-30 14:29:24
|
Update of /cvsroot/gc-linux/linux/Documentation In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20198/Documentation Modified Files: exi.txt Log Message: Document exi_{get,set}_drvdata() Index: exi.txt =================================================================== RCS file: /cvsroot/gc-linux/linux/Documentation/exi.txt,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- exi.txt 24 May 2004 00:58:58 -0000 1.3 +++ exi.txt 30 Jul 2004 14:29:15 -0000 1.4 @@ -71,3 +71,11 @@ exi_driver_unregister(&frob_driver); } +Device Private Data +------------------- + +The functions exi_set_drvdata()/exi_get_drvdata() are available for the +sole purpose of setting and getting driver private data for an EXI device. +These are simply helpers around the driver-model functions that do the +actual work. Use them. That way, you don't have to worry (or worry less) +about changes to the driver-model API. |