mirror of
https://github.com/torvalds/linux.git
synced 2026-04-19 23:34:00 -04: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
25 lines
890 B
C
25 lines
890 B
C
/* SPDX-License-Identifier: MIT */
|
|
#ifndef __NVKM_DEVINIT_PRIV_H__
|
|
#define __NVKM_DEVINIT_PRIV_H__
|
|
#define nvkm_devinit(p) container_of((p), struct nvkm_devinit, subdev)
|
|
#include <subdev/devinit.h>
|
|
|
|
struct nvkm_devinit_func {
|
|
void *(*dtor)(struct nvkm_devinit *);
|
|
void (*preinit)(struct nvkm_devinit *);
|
|
void (*init)(struct nvkm_devinit *);
|
|
int (*post)(struct nvkm_devinit *, bool post);
|
|
u32 (*mmio)(struct nvkm_devinit *, u32);
|
|
void (*meminit)(struct nvkm_devinit *);
|
|
int (*pll_set)(struct nvkm_devinit *, u32 type, u32 freq);
|
|
void (*disable)(struct nvkm_devinit *);
|
|
};
|
|
|
|
void nvkm_devinit_ctor(const struct nvkm_devinit_func *, struct nvkm_device *,
|
|
enum nvkm_subdev_type, int inst, struct nvkm_devinit *);
|
|
u64 nvkm_devinit_disable(struct nvkm_devinit *);
|
|
|
|
int nv04_devinit_post(struct nvkm_devinit *, bool);
|
|
int tu102_devinit_post(struct nvkm_devinit *, bool);
|
|
#endif
|