Commit 44858055 authored by Dave Airlie's avatar Dave Airlie Committed by Alex Deucher

amdgpu/dc: set a bunch of functions to static.

All of these are unused outside the file they are in.
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
Reviewed-by: default avatarHarry Wentland <harry.wentland@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent c6fa5318
...@@ -531,7 +531,7 @@ static enum bp_result bios_parser_get_hpd_info(struct dc_bios *dcb, ...@@ -531,7 +531,7 @@ static enum bp_result bios_parser_get_hpd_info(struct dc_bios *dcb,
return BP_RESULT_NORECORD; return BP_RESULT_NORECORD;
} }
enum bp_result bios_parser_get_device_tag_record( static enum bp_result bios_parser_get_device_tag_record(
struct bios_parser *bp, struct bios_parser *bp,
ATOM_OBJECT *object, ATOM_OBJECT *object,
ATOM_CONNECTOR_DEVICE_TAG_RECORD **record) ATOM_CONNECTOR_DEVICE_TAG_RECORD **record)
......
...@@ -1135,7 +1135,7 @@ bool dcn_validate_bandwidth( ...@@ -1135,7 +1135,7 @@ bool dcn_validate_bandwidth(
return false; return false;
} }
unsigned int dcn_find_normalized_clock_vdd_Level( static unsigned int dcn_find_normalized_clock_vdd_Level(
const struct dc *dc, const struct dc *dc,
enum dm_pp_clock_type clocks_type, enum dm_pp_clock_type clocks_type,
int clocks_in_khz) int clocks_in_khz)
......
...@@ -327,7 +327,7 @@ static void set_test_pattern( ...@@ -327,7 +327,7 @@ static void set_test_pattern(
cust_pattern_size); cust_pattern_size);
} }
void set_dither_option(struct dc_stream_state *stream, static void set_dither_option(struct dc_stream_state *stream,
enum dc_dither_option option) enum dc_dither_option option)
{ {
struct bit_depth_reduction_params params; struct bit_depth_reduction_params params;
......
...@@ -208,7 +208,7 @@ static bool detect_sink(struct dc_link *link, enum dc_connection_type *type) ...@@ -208,7 +208,7 @@ static bool detect_sink(struct dc_link *link, enum dc_connection_type *type)
return false; return false;
} }
enum ddc_transaction_type get_ddc_transaction_type( static enum ddc_transaction_type get_ddc_transaction_type(
enum signal_type sink_signal) enum signal_type sink_signal)
{ {
enum ddc_transaction_type transaction_type = DDC_TRANSACTION_TYPE_NONE; enum ddc_transaction_type transaction_type = DDC_TRANSACTION_TYPE_NONE;
......
...@@ -1209,7 +1209,7 @@ static inline bool reached_minimum_link_rate(enum dc_link_rate link_rate) ...@@ -1209,7 +1209,7 @@ static inline bool reached_minimum_link_rate(enum dc_link_rate link_rate)
return link_rate <= LINK_RATE_LOW; return link_rate <= LINK_RATE_LOW;
} }
enum dc_lane_count reduce_lane_count(enum dc_lane_count lane_count) static enum dc_lane_count reduce_lane_count(enum dc_lane_count lane_count)
{ {
switch (lane_count) { switch (lane_count) {
case LANE_COUNT_FOUR: case LANE_COUNT_FOUR:
......
...@@ -110,7 +110,7 @@ void dp_enable_link_phy( ...@@ -110,7 +110,7 @@ void dp_enable_link_phy(
dp_receiver_power_ctrl(link, true); dp_receiver_power_ctrl(link, true);
} }
bool edp_receiver_ready_T9(struct dc_link *link) static bool edp_receiver_ready_T9(struct dc_link *link)
{ {
unsigned int tries = 0; unsigned int tries = 0;
unsigned char sinkstatus = 0; unsigned char sinkstatus = 0;
......
...@@ -833,8 +833,7 @@ void dce_aud_wall_dto_setup( ...@@ -833,8 +833,7 @@ void dce_aud_wall_dto_setup(
} }
} }
bool dce_aud_endpoint_valid( static bool dce_aud_endpoint_valid(struct audio *audio)
struct audio *audio)
{ {
uint32_t value; uint32_t value;
uint32_t port_connectivity; uint32_t port_connectivity;
......
...@@ -1183,7 +1183,7 @@ static const struct audio_clock_info audio_clock_info_table_48bpc[14] = { ...@@ -1183,7 +1183,7 @@ static const struct audio_clock_info audio_clock_info_table_48bpc[14] = {
}; };
union audio_cea_channels speakers_to_channels( static union audio_cea_channels speakers_to_channels(
struct audio_speaker_flags speaker_flags) struct audio_speaker_flags speaker_flags)
{ {
union audio_cea_channels cea_channels = {0}; union audio_cea_channels cea_channels = {0};
...@@ -1217,7 +1217,7 @@ union audio_cea_channels speakers_to_channels( ...@@ -1217,7 +1217,7 @@ union audio_cea_channels speakers_to_channels(
return cea_channels; return cea_channels;
} }
uint32_t calc_max_audio_packets_per_line( static uint32_t calc_max_audio_packets_per_line(
const struct audio_crtc_info *crtc_info) const struct audio_crtc_info *crtc_info)
{ {
uint32_t max_packets_per_line; uint32_t max_packets_per_line;
...@@ -1238,7 +1238,7 @@ uint32_t calc_max_audio_packets_per_line( ...@@ -1238,7 +1238,7 @@ uint32_t calc_max_audio_packets_per_line(
return max_packets_per_line; return max_packets_per_line;
} }
void get_audio_clock_info( static void get_audio_clock_info(
enum dc_color_depth color_depth, enum dc_color_depth color_depth,
uint32_t crtc_pixel_clock_in_khz, uint32_t crtc_pixel_clock_in_khz,
uint32_t actual_pixel_clock_in_khz, uint32_t actual_pixel_clock_in_khz,
......
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