drm/msm: Fix gen_header.py for older python3 versions
authorJon Hunter <jonathanh@nvidia.com>
Fri, 12 Apr 2024 16:54:07 +0000 (17:54 +0100)
committerDmitry Baryshkov <dmitry.baryshkov@linaro.org>
Mon, 22 Apr 2024 13:22:50 +0000 (16:22 +0300)
commitb662ade1be4ac49916251ebec46a3fbcf13b9f2b
tree7f719e66b65115f36726668f00e8d9f3f96f6c8c
parentafd898c79f828b2cb7fe87fde62d27c8a603ae63
drm/msm: Fix gen_header.py for older python3 versions

The gen_header.py script is failing for older versions of python3 such
as python 3.5. Two issues observed with python 3.5 are ...

 1. Python 3 versions prior to 3.6 do not support the f-string format.
 2. Early python 3 versions do not support the 'required' argument for
    the argparse add_subparsers().

Fix both of the above so that older versions of python 3 still work.

Fixes: 8f7abf0b86fe ("drm/msm: generate headers on the fly")
Signed-off-by: Jon Hunter <jonathanh@nvidia.com>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Patchwork: https://patchwork.freedesktop.org/patch/589427/
Link: https://lore.kernel.org/r/20240412165407.42163-1-jonathanh@nvidia.com
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
drivers/gpu/drm/msm/registers/gen_header.py