mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-03-11 11:19:25 +07:00
amdgpu/dc: hide some unused aux/i2c payload apis.
I've no idea if these are used on other platforms, but they aren't used outside this file here, so make them static. Drops 300 bytes. Signed-off-by: Dave Airlie <airlied@redhat.com> Reviewed-by: Harry Wentland <harry.wentland@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
204de25fd0
commit
736b4f153b
@ -126,7 +126,7 @@ struct aux_payloads {
|
||||
struct vector payloads;
|
||||
};
|
||||
|
||||
struct i2c_payloads *dal_ddc_i2c_payloads_create(struct dc_context *ctx, uint32_t count)
|
||||
static struct i2c_payloads *dal_ddc_i2c_payloads_create(struct dc_context *ctx, uint32_t count)
|
||||
{
|
||||
struct i2c_payloads *payloads;
|
||||
|
||||
@ -144,17 +144,17 @@ struct i2c_payloads *dal_ddc_i2c_payloads_create(struct dc_context *ctx, uint32_
|
||||
|
||||
}
|
||||
|
||||
struct i2c_payload *dal_ddc_i2c_payloads_get(struct i2c_payloads *p)
|
||||
static struct i2c_payload *dal_ddc_i2c_payloads_get(struct i2c_payloads *p)
|
||||
{
|
||||
return (struct i2c_payload *)p->payloads.container;
|
||||
}
|
||||
|
||||
uint32_t dal_ddc_i2c_payloads_get_count(struct i2c_payloads *p)
|
||||
static uint32_t dal_ddc_i2c_payloads_get_count(struct i2c_payloads *p)
|
||||
{
|
||||
return p->payloads.count;
|
||||
}
|
||||
|
||||
void dal_ddc_i2c_payloads_destroy(struct i2c_payloads **p)
|
||||
static void dal_ddc_i2c_payloads_destroy(struct i2c_payloads **p)
|
||||
{
|
||||
if (!p || !*p)
|
||||
return;
|
||||
@ -164,7 +164,7 @@ void dal_ddc_i2c_payloads_destroy(struct i2c_payloads **p)
|
||||
|
||||
}
|
||||
|
||||
struct aux_payloads *dal_ddc_aux_payloads_create(struct dc_context *ctx, uint32_t count)
|
||||
static struct aux_payloads *dal_ddc_aux_payloads_create(struct dc_context *ctx, uint32_t count)
|
||||
{
|
||||
struct aux_payloads *payloads;
|
||||
|
||||
@ -181,17 +181,17 @@ struct aux_payloads *dal_ddc_aux_payloads_create(struct dc_context *ctx, uint32_
|
||||
return NULL;
|
||||
}
|
||||
|
||||
struct aux_payload *dal_ddc_aux_payloads_get(struct aux_payloads *p)
|
||||
static struct aux_payload *dal_ddc_aux_payloads_get(struct aux_payloads *p)
|
||||
{
|
||||
return (struct aux_payload *)p->payloads.container;
|
||||
}
|
||||
|
||||
uint32_t dal_ddc_aux_payloads_get_count(struct aux_payloads *p)
|
||||
static uint32_t dal_ddc_aux_payloads_get_count(struct aux_payloads *p)
|
||||
{
|
||||
return p->payloads.count;
|
||||
}
|
||||
|
||||
void dal_ddc_aux_payloads_destroy(struct aux_payloads **p)
|
||||
static void dal_ddc_aux_payloads_destroy(struct aux_payloads **p)
|
||||
{
|
||||
if (!p || !*p)
|
||||
return;
|
||||
|
@ -57,16 +57,6 @@ struct dp_receiver_id_info;
|
||||
struct i2c_payloads;
|
||||
struct aux_payloads;
|
||||
|
||||
struct i2c_payloads *dal_ddc_i2c_payloads_create(struct dc_context *ctx, uint32_t count);
|
||||
struct i2c_payload *dal_ddc_i2c_payloads_get(struct i2c_payloads *p);
|
||||
uint32_t dal_ddc_i2c_payloads_get_count(struct i2c_payloads *p);
|
||||
void dal_ddc_i2c_payloads_destroy(struct i2c_payloads **p);
|
||||
|
||||
struct aux_payloads *dal_ddc_aux_payloads_create(struct dc_context *ctx, uint32_t count);
|
||||
struct aux_payload *dal_ddc_aux_payloads_get(struct aux_payloads *p);
|
||||
uint32_t dal_ddc_aux_payloads_get_count(struct aux_payloads *p);
|
||||
void dal_ddc_aux_payloads_destroy(struct aux_payloads **p);
|
||||
|
||||
void dal_ddc_i2c_payloads_add(
|
||||
struct i2c_payloads *payloads,
|
||||
uint32_t address,
|
||||
|
Loading…
Reference in New Issue
Block a user