Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0f1c8232e839e215e38055cd8ae79225ab178185
Commit:     0f1c8232e839e215e38055cd8ae79225ab178185
Parent:     301eacbf30e33f461701df91cb250d3fc24c5fe5
Author:     David Woodhouse <[EMAIL PROTECTED]>
AuthorDate: Tue Dec 11 15:28:18 2007 -0500
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Mon Jan 28 15:06:47 2008 -0800

    libertas: remove casts from lbs_cmd() and lbs_cmd_with_response() macros
    
    If stupid people like me give it arguments with the wrong type (like a
    pointer to the structure, for example, instead of the structure itself),
    then we should probably notice that at compile time. Otherwise, much
    confusion ensues.
    
    Signed-off-by: David Woodhouse <[EMAIL PROTECTED]>
    Signed-off-by: John W. Linville <[EMAIL PROTECTED]>
---
 drivers/net/wireless/libertas/cmd.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/wireless/libertas/cmd.h 
b/drivers/net/wireless/libertas/cmd.h
index 716f25b..950acce 100644
--- a/drivers/net/wireless/libertas/cmd.h
+++ b/drivers/net/wireless/libertas/cmd.h
@@ -7,11 +7,11 @@
 #include "dev.h"
 
 #define lbs_cmd(priv, cmdnr, cmd, callback, callback_arg) \
-       __lbs_cmd(priv, cmdnr, (struct cmd_header *) &cmd, sizeof(cmd), \
+       __lbs_cmd(priv, cmdnr, &(cmd).hdr, sizeof(cmd),   \
                        callback, callback_arg)
 
 #define lbs_cmd_with_response(priv, cmdnr, cmd) \
-       __lbs_cmd(priv, cmdnr, (struct cmd_header *) &cmd, sizeof(cmd), \
+       __lbs_cmd(priv, cmdnr, &(cmd).hdr, sizeof(cmd), \
                  lbs_cmd_copyback, (unsigned long) &cmd)
  
 int __lbs_cmd(struct lbs_private *priv, uint16_t command,
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to