Mithlesh Thukral <[EMAIL PROTECTED]> : [...] > diff --git a/drivers/net/netxen/netxen_nic.h > b/drivers/net/netxen/netxen_nic.h > index ad6688e..71edb5c 100644 > --- a/drivers/net/netxen/netxen_nic.h > +++ b/drivers/net/netxen/netxen_nic.h > @@ -302,29 +302,28 @@ #define FLAGS_IPSEC_SA_ADD 0x04 [...] > -#define netxen_set_cmd_desc_num_of_buff(cmd_desc, val) \ > - ((cmd_desc)->num_of_buffers_total_length &= ~cpu_to_le32(0xff), \ > - (cmd_desc)->num_of_buffers_total_length |= cpu_to_le32((val) & 0xff)) > -#define netxen_set_cmd_desc_totallength(cmd_desc, val) \ > - ((cmd_desc)->num_of_buffers_total_length &= > ~cpu_to_le32(0xffffff00), \ > - (cmd_desc)->num_of_buffers_total_length |= cpu_to_le32(val << 8)) > +#define netxen_set_cmd_desc_num_of_buff(cmd_desc, val) \ > + ((cmd_desc)->num_of_buffers_total_length &= ~(0xff<<0), \ > + (cmd_desc)->num_of_buffers_total_length |= (val & 0xff)<<0)
The cpu_to_leXY have disappeared but the fields of the struct are still annotated with __le. Is sparse happy with it ? -- Ueimor Anybody got a battery for my Ultra 10 ? - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html