Commit c2e218dd authored by Harry Wentland's avatar Harry Wentland Committed by Alex Deucher

drm/amd/display: Some more warning fixes

This doesn't show with gcc6
Signed-off-by: default avatarHarry Wentland <harry.wentland@amd.com>
Acked-by: default avatarHarry Wentland <Harry.Wentland@amd.com>
Reviewed-by: default avatarTony Cheng <Tony.Cheng@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent ce9c0880
...@@ -928,7 +928,7 @@ static bool construct( ...@@ -928,7 +928,7 @@ static bool construct(
{ {
uint8_t i; uint8_t i;
struct gpio *hpd_gpio = NULL; struct gpio *hpd_gpio = NULL;
struct ddc_service_init_data ddc_service_init_data = { 0 }; struct ddc_service_init_data ddc_service_init_data = { { 0 } };
struct dc_context *dc_ctx = init_params->ctx; struct dc_context *dc_ctx = init_params->ctx;
struct encoder_init_data enc_init_data = { 0 }; struct encoder_init_data enc_init_data = { 0 };
struct integrated_info info = {{{ 0 }}}; struct integrated_info info = {{{ 0 }}};
......
...@@ -1762,7 +1762,7 @@ bool dc_link_handle_hpd_rx_irq(const struct dc_link *dc_link) ...@@ -1762,7 +1762,7 @@ bool dc_link_handle_hpd_rx_irq(const struct dc_link *dc_link)
{ {
struct core_link *link = DC_LINK_TO_LINK(dc_link); struct core_link *link = DC_LINK_TO_LINK(dc_link);
union hpd_irq_data hpd_irq_dpcd_data = {{{{0}}}}; union hpd_irq_data hpd_irq_dpcd_data = {{{{0}}}};
union device_service_irq device_service_clear = {0}; union device_service_irq device_service_clear = { { 0 } };
enum dc_status result = DDC_RESULT_UNKNOWN; enum dc_status result = DDC_RESULT_UNKNOWN;
bool status = false; bool status = false;
/* For use cases related to down stream connection status change, /* For use cases related to down stream connection status change,
......
...@@ -393,8 +393,8 @@ static void dce_clock_read_integrated_info(struct dce_disp_clk *clk_dce) ...@@ -393,8 +393,8 @@ static void dce_clock_read_integrated_info(struct dce_disp_clk *clk_dce)
{ {
struct dc_debug *debug = &clk_dce->base.ctx->dc->debug; struct dc_debug *debug = &clk_dce->base.ctx->dc->debug;
struct dc_bios *bp = clk_dce->base.ctx->dc_bios; struct dc_bios *bp = clk_dce->base.ctx->dc_bios;
struct integrated_info info = { 0 }; struct integrated_info info = { { { 0 } } };
struct firmware_info fw_info = { 0 }; struct firmware_info fw_info = { { 0 } };
int i; int i;
if (bp->integrated_info) if (bp->integrated_info)
...@@ -456,7 +456,7 @@ static void dce_clock_read_ss_info(struct dce_disp_clk *clk_dce) ...@@ -456,7 +456,7 @@ static void dce_clock_read_ss_info(struct dce_disp_clk *clk_dce)
bp, AS_SIGNAL_TYPE_GPU_PLL); bp, AS_SIGNAL_TYPE_GPU_PLL);
if (ss_info_num) { if (ss_info_num) {
struct spread_spectrum_info info = { 0 }; struct spread_spectrum_info info = { { 0 } };
enum bp_result result = bp->funcs->get_spread_spectrum_info( enum bp_result result = bp->funcs->get_spread_spectrum_info(
bp, AS_SIGNAL_TYPE_GPU_PLL, 0, &info); bp, AS_SIGNAL_TYPE_GPU_PLL, 0, &info);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment