drm/amd/display: Add missing static
authorRodrigo Siqueira <rodrigo.siqueira@amd.com>
Thu, 15 Jun 2023 17:57:16 +0000 (11:57 -0600)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 18 Jul 2023 15:13:30 +0000 (11:13 -0400)
After enable DRM_AMDGPU_WERROR, clang highlight multiple functions that
need to have `static`, and this commit address those issues and also
improve the indents.

Reviewed-by: Hamza Mahfooz <hamza.mahfooz@amd.com>
Acked-by: Alan Liu <haoping.liu@amd.com>
Signed-off-by: Rodrigo Siqueira <rodrigo.siqueira@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/basics/vector.c
drivers/gpu/drm/amd/display/dc/bios/bios_parser.c
drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c
drivers/gpu/drm/amd/display/dc/core/dc.c
drivers/gpu/drm/amd/display/dc/core/dc_hw_sequencer.c
drivers/gpu/drm/amd/display/dc/dce/dce_dmcu.c
drivers/gpu/drm/amd/display/dc/dce/dce_i2c_hw.c
drivers/gpu/drm/amd/display/dc/dce/dce_i2c_sw.c
drivers/gpu/drm/amd/display/dc/dcn21/dcn21_dccg.c
drivers/gpu/drm/amd/display/dc/dcn21/dcn21_dccg.h
drivers/gpu/drm/amd/display/dc/irq/dcn314/irq_service_dcn314.c

index 84aeccf..6d29241 100644 (file)
@@ -50,12 +50,11 @@ bool dal_vector_construct(
        return true;
 }
 
-static bool dal_vector_presized_costruct(
-       struct vector *vector,
-       struct dc_context *ctx,
-       uint32_t count,
-       void *initial_value,
-       uint32_t struct_size)
+static bool dal_vector_presized_costruct(struct vector *vector,
+                                        struct dc_context *ctx,
+                                        uint32_t count,
+                                        void *initial_value,
+                                        uint32_t struct_size)
 {
        uint32_t i;
 
index 27af9d3..4f005ae 100644 (file)
@@ -2593,11 +2593,10 @@ static struct integrated_info *bios_parser_create_integrated_info(
        return NULL;
 }
 
-static enum bp_result update_slot_layout_info(
-       struct dc_bios *dcb,
-       unsigned int i,
-       struct slot_layout_info *slot_layout_info,
-       unsigned int record_offset)
+static enum bp_result update_slot_layout_info(struct dc_bios *dcb,
+                                             unsigned int i,
+                                             struct slot_layout_info *slot_layout_info,
+                                             unsigned int record_offset)
 {
        unsigned int j;
        struct bios_parser *bp;
@@ -2696,10 +2695,9 @@ static enum bp_result update_slot_layout_info(
 }
 
 
-static enum bp_result get_bracket_layout_record(
-       struct dc_bios *dcb,
-       unsigned int bracket_layout_id,
-       struct slot_layout_info *slot_layout_info)
+static enum bp_result get_bracket_layout_record(struct dc_bios *dcb,
+                                               unsigned int bracket_layout_id,
+                                               struct slot_layout_info *slot_layout_info)
 {
        unsigned int i;
        unsigned int record_offset;
index cce47d3..540d19e 100644 (file)
@@ -340,9 +340,8 @@ static struct atom_display_object_path_v2 *get_bios_object(
 }
 
 /* from graphics_object_id, find display path which includes the object_id */
-static struct atom_display_object_path_v3 *get_bios_object_from_path_v3(
-       struct bios_parser *bp,
-       struct graphics_object_id id)
+static struct atom_display_object_path_v3 *get_bios_object_from_path_v3(struct bios_parser *bp,
+                                                                       struct graphics_object_id id)
 {
        unsigned int i;
        struct graphics_object_id obj_id = {0};
@@ -521,9 +520,8 @@ static enum bp_result get_gpio_i2c_info(
        return BP_RESULT_OK;
 }
 
-static struct atom_hpd_int_record *get_hpd_record_for_path_v3(
-       struct bios_parser *bp,
-       struct atom_display_object_path_v3 *object)
+static struct atom_hpd_int_record *get_hpd_record_for_path_v3(struct bios_parser *bp,
+                                                             struct atom_display_object_path_v3 *object)
 {
        struct atom_common_record_header *header;
        uint32_t offset;
@@ -2175,9 +2173,8 @@ static struct atom_disp_connector_caps_record *get_disp_connector_caps_record(
        return NULL;
 }
 
-static struct atom_connector_caps_record *get_connector_caps_record(
-       struct bios_parser *bp,
-       struct atom_display_object_path_v3 *object)
+static struct atom_connector_caps_record *get_connector_caps_record(struct bios_parser *bp,
+                                                                   struct atom_display_object_path_v3 *object)
 {
        struct atom_common_record_header *header;
        uint32_t offset;
@@ -2264,9 +2261,8 @@ static enum bp_result bios_parser_get_disp_connector_caps_info(
        return BP_RESULT_OK;
 }
 
-static struct atom_connector_speed_record *get_connector_speed_cap_record(
-       struct bios_parser *bp,
-       struct atom_display_object_path_v3 *object)
+static struct atom_connector_speed_record *get_connector_speed_cap_record(struct bios_parser *bp,
+                                                                         struct atom_display_object_path_v3 *object)
 {
        struct atom_common_record_header *header;
        uint32_t offset;
index d133e41..de3b891 100644 (file)
@@ -1047,8 +1047,10 @@ static void disable_all_writeback_pipes_for_stream(
                stream->writeback_info[i].wb_enabled = false;
 }
 
-static void apply_ctx_interdependent_lock(struct dc *dc, struct dc_state *context,
-                                         struct dc_stream_state *stream, bool lock)
+static void apply_ctx_interdependent_lock(struct dc *dc,
+                                         struct dc_state *context,
+                                         struct dc_stream_state *stream,
+                                         bool lock)
 {
        int i;
 
index cb2bf9a..f99ec1b 100644 (file)
@@ -187,6 +187,7 @@ static bool is_ycbcr709_limited_type(
                ret = true;
        return ret;
 }
+
 static enum dc_color_space_type get_color_space_type(enum dc_color_space color_space)
 {
        enum dc_color_space_type type = COLOR_SPACE_RGB_TYPE;
index 63009db..b87bfec 100644 (file)
@@ -76,9 +76,9 @@ static bool dce_dmcu_init(struct dmcu *dmcu)
 }
 
 static bool dce_dmcu_load_iram(struct dmcu *dmcu,
-               unsigned int start_offset,
-               const char *src,
-               unsigned int bytes)
+                              unsigned int start_offset,
+                              const char *src,
+                              unsigned int bytes)
 {
        struct dce_dmcu *dmcu_dce = TO_DCE_DMCU(dmcu);
        unsigned int count = 0;
index 6d1b01c..4f552c3 100644 (file)
@@ -442,10 +442,9 @@ struct dce_i2c_hw *acquire_i2c_hw_engine(
        return dce_i2c_hw;
 }
 
-static enum i2c_channel_operation_result dce_i2c_hw_engine_wait_on_operation_result(
-       struct dce_i2c_hw *dce_i2c_hw,
-       uint32_t timeout,
-       enum i2c_channel_operation_result expected_result)
+static enum i2c_channel_operation_result dce_i2c_hw_engine_wait_on_operation_result(struct dce_i2c_hw *dce_i2c_hw,
+                                                                                   uint32_t timeout,
+                                                                                   enum i2c_channel_operation_result expected_result)
 {
        enum i2c_channel_operation_result result;
        uint32_t i = 0;
@@ -509,11 +508,10 @@ static uint32_t get_transaction_timeout_hw(
        return period_timeout * num_of_clock_stretches;
 }
 
-static bool dce_i2c_hw_engine_submit_payload(
-       struct dce_i2c_hw *dce_i2c_hw,
-       struct i2c_payload *payload,
-       bool middle_of_transaction,
-       uint32_t speed)
+static bool dce_i2c_hw_engine_submit_payload(struct dce_i2c_hw *dce_i2c_hw,
+                                            struct i2c_payload *payload,
+                                            bool middle_of_transaction,
+                                            uint32_t speed)
 {
 
        struct i2c_request_transaction_data request;
index f1aeb6d..e188447 100644 (file)
@@ -367,6 +367,7 @@ static bool dce_i2c_sw_engine_acquire_engine(
 
        return true;
 }
+
 bool dce_i2c_engine_acquire_sw(
        struct dce_i2c_sw *dce_i2c_sw,
        struct ddc *ddc_handle)
@@ -392,12 +393,8 @@ bool dce_i2c_engine_acquire_sw(
        return result;
 }
 
-
-
-
-static void dce_i2c_sw_engine_submit_channel_request(
-       struct dce_i2c_sw *engine,
-       struct i2c_request_transaction_data *req)
+static void dce_i2c_sw_engine_submit_channel_request(struct dce_i2c_sw *engine,
+                                                    struct i2c_request_transaction_data *req)
 {
        struct ddc *ddc = engine->ddc;
        uint16_t clock_delay_div_4 = engine->clock_delay >> 2;
@@ -439,10 +436,9 @@ static void dce_i2c_sw_engine_submit_channel_request(
                I2C_CHANNEL_OPERATION_FAILED;
 }
 
-static bool dce_i2c_sw_engine_submit_payload(
-       struct dce_i2c_sw *engine,
-       struct i2c_payload *payload,
-       bool middle_of_transaction)
+static bool dce_i2c_sw_engine_submit_payload(struct dce_i2c_sw *engine,
+                                            struct i2c_payload *payload,
+                                            bool middle_of_transaction)
 {
        struct i2c_request_transaction_data request;
 
index 33fc9aa..d07c044 100644 (file)
@@ -43,7 +43,7 @@
 #define DC_LOGGER \
        dccg->ctx->logger
 
-void dccg21_update_dpp_dto(struct dccg *dccg, int dpp_inst, int req_dppclk)
+static void dccg21_update_dpp_dto(struct dccg *dccg, int dpp_inst, int req_dppclk)
 {
        struct dcn_dccg *dccg_dcn = TO_DCN_DCCG(dccg);
 
index e44a374..b7efa77 100644 (file)
@@ -32,6 +32,5 @@ struct dccg *dccg21_create(
        const struct dccg_shift *dccg_shift,
        const struct dccg_mask *dccg_mask);
 
-void dccg21_update_dpp_dto(struct dccg *dccg, int dpp_inst, int req_dppclk);
 
 #endif /* __DCN21_DCCG_H__ */
index c923b2a..37bc98f 100644 (file)
 
 #define DCN_BASE__INST0_SEG2                       0x000034C0
 
-static enum dc_irq_source to_dal_irq_source_dcn314(
-               struct irq_service *irq_service,
-               uint32_t src_id,
-               uint32_t ext_id)
+static enum dc_irq_source to_dal_irq_source_dcn314(struct irq_service *irq_service,
+                                                  uint32_t src_id,
+                                                  uint32_t ext_id)
 {
        switch (src_id) {
        case DCN_1_0__SRCID__DC_D1_OTG_VSTARTUP: