Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.1 14 lines 295 B view raw
1/* SPDX-License-Identifier: MIT */ 2/* 3 * Copyright © 2021 Intel Corporation 4 */ 5 6#ifndef _INTEL_QP_TABLES_H_ 7#define _INTEL_QP_TABLES_H_ 8 9#include <linux/types.h> 10 11u8 intel_lookup_range_min_qp(int bpc, int buf_i, int bpp_i); 12u8 intel_lookup_range_max_qp(int bpc, int buf_i, int bpp_i); 13 14#endif