mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
drm/amdkfd: label internally used symbols as static
Used sparse(make C=1) to find these loose ends. v2: removed unwanted extra line Signed-off-by: Nirmoy Das <nirmoy.das@amd.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
f3167919f6
commit
204d8998ce
2 changed files with 3 additions and 3 deletions
|
@ -137,7 +137,7 @@ void program_sh_mem_settings(struct device_queue_manager *dqm,
|
|||
qpd->sh_mem_bases);
|
||||
}
|
||||
|
||||
void increment_queue_count(struct device_queue_manager *dqm,
|
||||
static void increment_queue_count(struct device_queue_manager *dqm,
|
||||
enum kfd_queue_type type)
|
||||
{
|
||||
dqm->active_queue_count++;
|
||||
|
@ -145,7 +145,7 @@ void increment_queue_count(struct device_queue_manager *dqm,
|
|||
dqm->active_cp_queue_count++;
|
||||
}
|
||||
|
||||
void decrement_queue_count(struct device_queue_manager *dqm,
|
||||
static void decrement_queue_count(struct device_queue_manager *dqm,
|
||||
enum kfd_queue_type type)
|
||||
{
|
||||
dqm->active_queue_count--;
|
||||
|
|
|
@ -313,7 +313,7 @@ static int kfd_sysfs_create_file(struct kfd_process *p, struct attribute *attr,
|
|||
return ret;
|
||||
}
|
||||
|
||||
int kfd_procfs_add_sysfs_files(struct kfd_process *p)
|
||||
static int kfd_procfs_add_sysfs_files(struct kfd_process *p)
|
||||
{
|
||||
int ret = 0;
|
||||
struct kfd_process_device *pdd;
|
||||
|
|
Loading…
Add table
Reference in a new issue