> Missing blank line. > We put a commit message as > > $SUMARY > ...blank line... > $DESCRIPTION (can contain blank lines) > ...blank line... > $TAG block (may not contain blank lines) > > > Signed-off-by: Mark Hasemeyer <markhas@xxxxxxxxxxxx> Looks like a nuance of patman I need to iron out. > > ... > > > + unsigned long res_flags; > > Why not calling it irq_flags? irq_flags is already used within the same scope, although it's declared at the top of the function. I'll move the declaration to the scope where it's used and rename irq_flags -> irq_type, and irq_res -> irq_flags. > > +struct resource; > > This... > > > + struct resource r = {}; > > > + return ret ?: r.start; > > ...does _not_ cover these cases. > > Hence ioport.h must be included. Did I miss it? You're right. It didn't break the build, which means ioport.h must be included indirectly. I'll add it back.