commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
19 lines
303 B
C
19 lines
303 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright 2020 Google LLC
|
|
*/
|
|
|
|
#ifndef ASM_P2SB_H
|
|
#define ASM_P2SB_H
|
|
|
|
/* Platform data for the P2SB */
|
|
struct p2sb_plat {
|
|
#if CONFIG_IS_ENABLED(OF_PLATDATA)
|
|
struct dtd_intel_p2sb dtplat;
|
|
#endif
|
|
ulong mmio_base;
|
|
pci_dev_t bdf;
|
|
};
|
|
|
|
#endif /* ASM_P2SB_H */
|