media: venus: Delete not used core caps
authorStanimir Varbanov <stanimir.varbanov@linaro.org>
Mon, 17 Aug 2020 14:28:20 +0000 (16:28 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Wed, 13 Jan 2021 08:09:39 +0000 (09:09 +0100)
The core caps are filled but not used, delete them. In case we
need them we can re-introduce.

Signed-off-by: Stanimir Varbanov <stanimir.varbanov@linaro.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/media/platform/qcom/venus/core.h
drivers/media/platform/qcom/venus/hfi_venus.c

index 34f300b..29f5e25 100644 (file)
@@ -146,7 +146,6 @@ struct venus_caps {
  * @enc_codecs:        encoders supported by this core
  * @dec_codecs:        decoders supported by this core
  * @max_sessions_supported:    holds the maximum number of sessions
- * @core_caps: core capabilities
  * @priv:      a private filed for HFI operations
  * @ops:               the core HFI operations
  * @work:      a delayed work for handling system fatal error
@@ -192,11 +191,6 @@ struct venus_core {
        unsigned long enc_codecs;
        unsigned long dec_codecs;
        unsigned int max_sessions_supported;
-#define ENC_ROTATION_CAPABILITY                0x1
-#define ENC_SCALING_CAPABILITY         0x2
-#define ENC_DEINTERLACE_CAPABILITY     0x4
-#define DEC_MULTI_STREAM_CAPABILITY    0x8
-       unsigned int core_caps;
        void *priv;
        const struct hfi_ops *ops;
        struct delayed_work work;
index 3d16afc..50e03f8 100644 (file)
@@ -1602,9 +1602,6 @@ int venus_hfi_create(struct venus_core *core)
        hdev->suspended = true;
        core->priv = hdev;
        core->ops = &venus_hfi_ops;
-       core->core_caps = ENC_ROTATION_CAPABILITY | ENC_SCALING_CAPABILITY |
-                         ENC_DEINTERLACE_CAPABILITY |
-                         DEC_MULTI_STREAM_CAPABILITY;
 
        ret = venus_interface_queues_init(hdev);
        if (ret)