mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-09 16:46:39 +07:00
drm/nouveau/clk: allow users to enable auto mode when loading driver
This patch adds one option for the boot config strings "NvClkMode*", so that we can enable the "auto" mode when loading module. Signed-off-by: Vince Hsu <vinceh@nvidia.com> Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
parent
9f7fd620af
commit
9f79b5ce12
@ -401,6 +401,9 @@ nouveau_clock_nstate(struct nouveau_clock *clk, const char *mode, int arglen)
|
||||
{
|
||||
int ret = 1;
|
||||
|
||||
if (clk->allow_reclock && !strncasecmpz(mode, "auto", arglen))
|
||||
return -2;
|
||||
|
||||
if (strncasecmpz(mode, "disabled", arglen)) {
|
||||
char save = mode[arglen];
|
||||
long v;
|
||||
|
Loading…
Reference in New Issue
Block a user