Revert "seq_buf: Avoid type mismatch for seq_buf_init"
This reverts commitd494ddccf2which is commitd9a9280a0dupstream. It breaks the abi definitions, and there's no real need for it at all other than for "correctness", so revert the thing. Bug: 161946584 Signed-off-by: Greg Kroah-Hartman <gregkh@google.com> Change-Id: I20ccc2690eca2c16adf507d679fa5e0a6c746e1c
This commit is contained in:
@@ -30,7 +30,7 @@ static inline void seq_buf_clear(struct seq_buf *s)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static inline void
|
static inline void
|
||||||
seq_buf_init(struct seq_buf *s, char *buf, unsigned int size)
|
seq_buf_init(struct seq_buf *s, unsigned char *buf, unsigned int size)
|
||||||
{
|
{
|
||||||
s->buffer = buf;
|
s->buffer = buf;
|
||||||
s->size = size;
|
s->size = size;
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
struct trace_seq {
|
struct trace_seq {
|
||||||
char buffer[PAGE_SIZE];
|
unsigned char buffer[PAGE_SIZE];
|
||||||
struct seq_buf seq;
|
struct seq_buf seq;
|
||||||
int full;
|
int full;
|
||||||
};
|
};
|
||||||
@@ -51,7 +51,7 @@ static inline int trace_seq_used(struct trace_seq *s)
|
|||||||
* that is about to be written to and then return the result
|
* that is about to be written to and then return the result
|
||||||
* of that write.
|
* of that write.
|
||||||
*/
|
*/
|
||||||
static inline char *
|
static inline unsigned char *
|
||||||
trace_seq_buffer_ptr(struct trace_seq *s)
|
trace_seq_buffer_ptr(struct trace_seq *s)
|
||||||
{
|
{
|
||||||
return s->buffer + seq_buf_used(&s->seq);
|
return s->buffer + seq_buf_used(&s->seq);
|
||||||
|
|||||||
Reference in New Issue
Block a user