mirror of
https://github.com/torvalds/linux.git
synced 2024-12-11 13:41:55 +00:00
9555b47fab
Function like macros cannot be assigned to function pointers. This patch
convert the function-like macros into object-macros, that the
precompiler will replace with the name of the final function.
With this patch this kind of code will work:
if (priv->mode_big_endian)
priv.read = ioread32be;
else
priv.read = ioread32;
Same approach has been taken on asm-generic/io.h
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Fixes:
|
||
---|---|---|
.. | ||
asm | ||
uapi/asm |