License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-2.6/btrfs-unstable.git] / drivers / gpu / drm / nouveau / nvkm / subdev / clk / pll.h
blob9a39f1fd2976e869dbf30b5a0818db6a6867c53c
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __NVKM_PLL_H__
3 #define __NVKM_PLL_H__
4 #include <core/os.h>
5 struct nvkm_subdev;
6 struct nvbios_pll;
8 int nv04_pll_calc(struct nvkm_subdev *, struct nvbios_pll *, u32 freq,
9 int *N1, int *M1, int *N2, int *M2, int *P);
10 int gt215_pll_calc(struct nvkm_subdev *, struct nvbios_pll *, u32 freq,
11 int *N, int *fN, int *M, int *P);
12 #endif