xref: /linux/drivers/gpu/nova-core/gsp.rs (revision e7c96980ea4d93e79b43b07c5489d700207b0055)
1 // SPDX-License-Identifier: GPL-2.0
2 
3 mod boot;
4 
5 use kernel::prelude::*;
6 
7 /// GSP runtime data.
8 ///
9 /// This is an empty pinned placeholder for now.
10 #[pin_data]
11 pub(crate) struct Gsp {}
12 
13 impl Gsp {
14     pub(crate) fn new() -> impl PinInit<Self> {
15         pin_init!(Self {})
16     }
17 }
18