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

gpu: nova-core: Fix capitalization of some comments

Some comments that already existed didn't start with a capital
letter, this patch fixes that.

Signed-off-by: Daniel del Castillo <delcastillodelarosadaniel@gmail.com>
[acourbot@nvidia.com: set prefix to "gpu: nova-core:".]
Signed-off-by: Alexandre Courbot <acourbot@nvidia.com>
Message-ID: <20251104193756.57726-2-delcastillodelarosadaniel@gmail.com>

authored by

Daniel del Castillo and committed by
Alexandre Courbot
571ce401 473f7785

+6 -6
+6 -6
drivers/gpu/nova-core/firmware/fwsec.rs
··· 59 59 entry_size: u8, 60 60 entry_count: u8, 61 61 } 62 - // SAFETY: any byte sequence is valid for this struct. 62 + // SAFETY: Any byte sequence is valid for this struct. 63 63 unsafe impl FromBytes for FalconAppifHdrV1 {} 64 64 65 65 #[repr(C, packed)] ··· 68 68 id: u32, 69 69 dmem_base: u32, 70 70 } 71 - // SAFETY: any byte sequence is valid for this struct. 71 + // SAFETY: Any byte sequence is valid for this struct. 72 72 unsafe impl FromBytes for FalconAppifV1 {} 73 73 74 74 #[derive(Debug)] ··· 92 92 ucode_cmd_mask1: u32, 93 93 multi_tgt_tbl: u32, 94 94 } 95 - // SAFETY: any byte sequence is valid for this struct. 95 + // SAFETY: Any byte sequence is valid for this struct. 96 96 unsafe impl FromBytes for FalconAppifDmemmapperV3 {} 97 97 // SAFETY: This struct doesn't contain uninitialized bytes and doesn't have interior mutability. 98 98 unsafe impl AsBytes for FalconAppifDmemmapperV3 {} ··· 106 106 size: u32, 107 107 flags: u32, 108 108 } 109 - // SAFETY: any byte sequence is valid for this struct. 109 + // SAFETY: Any byte sequence is valid for this struct. 110 110 unsafe impl FromBytes for ReadVbios {} 111 111 // SAFETY: This struct doesn't contain uninitialized bytes and doesn't have interior mutability. 112 112 unsafe impl AsBytes for ReadVbios {} ··· 120 120 size: u32, 121 121 ftype: u32, 122 122 } 123 - // SAFETY: any byte sequence is valid for this struct. 123 + // SAFETY: Any byte sequence is valid for this struct. 124 124 unsafe impl FromBytes for FrtsRegion {} 125 125 // SAFETY: This struct doesn't contain uninitialized bytes and doesn't have interior mutability. 126 126 unsafe impl AsBytes for FrtsRegion {} ··· 132 132 read_vbios: ReadVbios, 133 133 frts_region: FrtsRegion, 134 134 } 135 - // SAFETY: any byte sequence is valid for this struct. 135 + // SAFETY: Any byte sequence is valid for this struct. 136 136 unsafe impl FromBytes for FrtsCmd {} 137 137 // SAFETY: This struct doesn't contain uninitialized bytes and doesn't have interior mutability. 138 138 unsafe impl AsBytes for FrtsCmd {}