Message ID | mhng-878cc879-7aa0-473f-91e4-8288072cdd4e@palmer-ri-x1c9 (mailing list archive) |
---|---|
State | Accepted |
Commit | e5075d8ec5647322fb9e699bfb76331cc8ee098d |
Headers | show |
Series | [GIT,PULL] RISC-V Patches for the 6.8 Merge Window, Part 4 | expand |
The pull request you sent on Sat, 20 Jan 2024 10:17:18 -0800 (PST):
> git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git tags/riscv-for-linus-6.8-mw4
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/e5075d8ec5647322fb9e699bfb76331cc8ee098d
Thank you!
Hello: This pull request was applied to riscv/linux.git (fixes) by Linus Torvalds <torvalds@linux-foundation.org>: On Sat, 20 Jan 2024 10:17:18 -0800 (PST) you wrote: > The following changes since commit cb51bfee7f62a8e26b694f9d84c0041b3e3ccc71: > > Merge patch series "riscv: hwprobe: add Zicond, Zacas and Ztso support" (2024-01-09 20:14:51 -0800) > > are available in the Git repository at: > > git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git tags/riscv-for-linus-6.8-mw4 > > [...] Here is the summary with links: - [GIT,PULL] RISC-V Patches for the 6.8 Merge Window, Part 4 https://git.kernel.org/riscv/c/e5075d8ec564 You are awesome, thank you!
diff --git a/drivers/tty/hvc/hvc_riscv_sbi.c b/drivers/tty/hvc/hvc_riscv_sbi.c index 0abd964d380b..cede8a572594 100644 --- a/drivers/tty/hvc/hvc_riscv_sbi.c +++ b/drivers/tty/hvc/hvc_riscv_sbi.c @@ -45,12 +45,12 @@ static const struct hv_ops hvc_sbi_v01_ops = { .put_chars = hvc_sbi_tty_put, }; -static int hvc_sbi_dbcn_tty_put(uint32_t vtermno, const char *buf, int count) +static ssize_t hvc_sbi_dbcn_tty_put(uint32_t vtermno, const u8 *buf, size_t count) { return sbi_debug_console_write(buf, count); } -static int hvc_sbi_dbcn_tty_get(uint32_t vtermno, char *buf, int count) +static ssize_t hvc_sbi_dbcn_tty_get(uint32_t vtermno, u8 *buf, size_t count) { return sbi_debug_console_read(buf, count); }