blob: 96bb175fc1494d5a4df82c64c01d668512b6c236 [file] [log] [blame]
struct msm_gpu {
// [...snip...]
const struct msm_gpu_perfcntr *perfcntrs;
// [...snip...]
};
struct msm_gpu_perfcntr {
// [...snip...]
const char *name;
};
static const struct msm_gpu_perfcntr perfcntrs[] = {};
struct msm_gpu *test(struct msm_gpu *gpu) {
// [...snip...]
gpu->perfcntrs = perfcntrs;
// [...snip...]
return gpu;
}