Let repeated clock byte be singular pointer and not array pointer

This commit is contained in:
Rasmus Melchior Jacobsen
2022-12-23 15:49:22 +01:00
parent e9a2c4a9e3
commit 47a0769fc2
5 changed files with 6 additions and 6 deletions

View File

@ -59,7 +59,7 @@ pub(crate) mod sealed {
unsafe fn start_write_repeated<W: super::Word>(
&mut self,
request: Request,
repeated: *const [W],
repeated: *const W,
count: usize,
reg_addr: *mut W,
options: TransferOptions,
@ -246,7 +246,7 @@ mod transfers {
pub fn write_repeated<'a, W: Word>(
channel: impl Peripheral<P = impl Channel> + 'a,
request: Request,
repeated: *const [W],
repeated: *const W,
count: usize,
reg_addr: *mut W,
) -> impl Future<Output = ()> + 'a {