mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-05 17:01:17 +00:00
include/net/raw.h: Convert raw_seq_private macro to inline
Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
cc28a20e77
commit
e3634169bc
@ -45,7 +45,10 @@ struct raw_iter_state {
|
|||||||
struct raw_hashinfo *h;
|
struct raw_hashinfo *h;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define raw_seq_private(seq) ((struct raw_iter_state *)(seq)->private)
|
static inline struct raw_iter_state *raw_seq_private(struct seq_file *seq)
|
||||||
|
{
|
||||||
|
return seq->private;
|
||||||
|
}
|
||||||
void *raw_seq_start(struct seq_file *seq, loff_t *pos);
|
void *raw_seq_start(struct seq_file *seq, loff_t *pos);
|
||||||
void *raw_seq_next(struct seq_file *seq, void *v, loff_t *pos);
|
void *raw_seq_next(struct seq_file *seq, void *v, loff_t *pos);
|
||||||
void raw_seq_stop(struct seq_file *seq, void *v);
|
void raw_seq_stop(struct seq_file *seq, void *v);
|
||||||
|
Loading…
Reference in New Issue
Block a user