Hi,

On Tue, Nov 24, 2009 at 01:50:27AM +0100, ext Omar Ramirez Luna wrote:
+/* The DPC object, passed to our priority event callback routine: */
+struct DPC_OBJECT {
+       u32 dwSignature;        /* Used for object validation.   */
+       void *pRefData;         /* Argument for client's DPC.    */
+       DPC_PROC pfnDPC;        /* Client's DPC.                 */
+       u32 numRequested;       /* Number of requested DPC's.      */
+       u32 numScheduled;       /* Number of executed DPC's.      */
+       struct tasklet_struct dpc_tasklet;

as a suggestion for upcoming patches... how about removing the variable types from its name and get rid of CaMeLcAsE ?

I mean:

-       u32 dwSignature;
+       u32 signature;

--
balbi
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to