mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

The current design of callback function disable() of struct nvkm_devinit_func is defined to return a u64 value. In its implementation in the driver modules, the function always returns a fixed value 0. Hence the design and implementation of this function should be enhanced to return void instead of a fixed value. This change also eliminates untouched return variables. The change is identified using the returnvar.cocci Coccinelle semantic patch script. Signed-off-by: Deepak R Varma <drv@mailo.com> Reviewed-by: Lyude Paul <lyude@redhat.com> Signed-off-by: Lyude Paul <lyude@redhat.com> Link: https://patchwork.freedesktop.org/patch/msgid/Y9FFoooIXjlr+UP1@ubun2204.myguest.virtualbox.org
30 lines
1,017 B
C
30 lines
1,017 B
C
/* SPDX-License-Identifier: MIT */
|
|
#ifndef __NV50_DEVINIT_H__
|
|
#define __NV50_DEVINIT_H__
|
|
#define nv50_devinit(p) container_of((p), struct nv50_devinit, base)
|
|
#include "priv.h"
|
|
|
|
struct nv50_devinit {
|
|
struct nvkm_devinit base;
|
|
u32 r001540;
|
|
};
|
|
|
|
int nv50_devinit_new_(const struct nvkm_devinit_func *, struct nvkm_device *, enum nvkm_subdev_type,
|
|
int, struct nvkm_devinit **);
|
|
void nv50_devinit_preinit(struct nvkm_devinit *);
|
|
void nv50_devinit_init(struct nvkm_devinit *);
|
|
int nv50_devinit_pll_set(struct nvkm_devinit *, u32, u32);
|
|
|
|
int gt215_devinit_pll_set(struct nvkm_devinit *, u32, u32);
|
|
|
|
int gf100_devinit_ctor(struct nvkm_object *, struct nvkm_object *,
|
|
struct nvkm_oclass *, void *, u32,
|
|
struct nvkm_object **);
|
|
int gf100_devinit_pll_set(struct nvkm_devinit *, u32, u32);
|
|
void gf100_devinit_preinit(struct nvkm_devinit *);
|
|
|
|
void gm107_devinit_disable(struct nvkm_devinit *);
|
|
|
|
int gm200_devinit_post(struct nvkm_devinit *, bool);
|
|
void gm200_devinit_preos(struct nv50_devinit *, bool);
|
|
#endif
|