On Tue, 24 Jul 2018 17:51:33 -0700 [email protected] wrote: > From: Roman Kiryanov <[email protected]> > > The driver never mutates this variable - no benefits of > keeping it mutable. > > Signed-off-by: Roman Kiryanov <[email protected]> > --- > Changes in v2: > - Replaced "const u32" with "#define".
v1 was IMHO definitely better. And you are correct that gcc will not allocate memory for a static const object unless you do things like take its address. It will (unlike a define) however properly typecheck everything. Alan

