mirror of
https://github.com/torvalds/linux.git
synced 2026-04-26 18:42:25 -04:00
Supported DCE versions: 8.0, 10.0, 11.0, 11.2 v2: rebase against 4.11 Signed-off-by: Harry Wentland <harry.wentland@amd.com> Acked-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
20 lines
335 B
C
20 lines
335 B
C
/*
|
|
* dce100_resource.h
|
|
*
|
|
* Created on: 2016-01-20
|
|
* Author: qyang
|
|
*/
|
|
|
|
#ifndef DCE100_RESOURCE_H_
|
|
#define DCE100_RESOURCE_H_
|
|
|
|
struct core_dc;
|
|
struct resource_pool;
|
|
struct dc_validation_set;
|
|
|
|
struct resource_pool *dce100_create_resource_pool(
|
|
uint8_t num_virtual_links,
|
|
struct core_dc *dc);
|
|
|
|
#endif /* DCE100_RESOURCE_H_ */
|