> +#ifdef CONFIG_COMPAT > +struct compat_cros_ec_command { > + uint32_t version; > + uint32_t command; > + compat_uptr_t outdata; > + uint32_t outsize; > + compat_uptr_t indata; > + uint32_t insize; > + uint32_t result; > +}; > + > +struct compat_cros_ec_readmem { > + uint32_t offset; > + uint32_t bytes; > + compat_uptr_t buffer; > +}; >
This is a new API - arrange them to be 64bit safe and properly padded, there is no excuse for needing compat crap except for legacy interfaces you can't fix. Alan -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/