We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Warn when GOTO refers to a LABEL that is unreachable. LABEL with the same value must be after the rule with GOTO.
GOTO
LABEL
Problematic code:
ACTION=="add", SUBSYSTEM=="sound", GOTO="point"
or
LABEL="point" ACTION=="add", SUBSYSTEM=="sound", GOTO="point"
Correct code:
ACTION=="add", SUBSYSTEM=="sound", GOTO="point" ... LABEL="point"