mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
tty: ttyprintk: convert to u8 and size_t
Switch character types to u8 and sizes to size_t. To conform to characters/sizes in the rest of the tty layer. Signed-off-by: "Jiri Slaby (SUSE)" <jirislaby@kernel.org> Cc: Arnd Bergmann <arnd@arndb.de> Link: https://lore.kernel.org/r/20231206073712.17776-26-jirislaby@kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
14abfd0cb5
commit
18977909bf
@ -40,7 +40,7 @@ static struct ttyprintk_port tpk_port;
|
|||||||
|
|
||||||
static int tpk_curr;
|
static int tpk_curr;
|
||||||
|
|
||||||
static char tpk_buffer[TPK_STR_SIZE + 4];
|
static u8 tpk_buffer[TPK_STR_SIZE + 4];
|
||||||
|
|
||||||
static void tpk_flush(void)
|
static void tpk_flush(void)
|
||||||
{
|
{
|
||||||
@ -51,9 +51,9 @@ static void tpk_flush(void)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static int tpk_printk(const u8 *buf, int count)
|
static int tpk_printk(const u8 *buf, size_t count)
|
||||||
{
|
{
|
||||||
int i;
|
size_t i;
|
||||||
|
|
||||||
for (i = 0; i < count; i++) {
|
for (i = 0; i < count; i++) {
|
||||||
if (tpk_curr >= TPK_STR_SIZE) {
|
if (tpk_curr >= TPK_STR_SIZE) {
|
||||||
|
Loading…
Reference in New Issue
Block a user