summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/drm/include/linux/seq_file.h
blob: ced4cc09d49d77eec6a14aa0ac710f7bec783d8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Public domain. */

#ifndef _LINUX_SEQ_FILE_H
#define _LINUX_SEQ_FILE_H

#include <linux/bug.h>
#include <linux/string.h>

struct seq_file;

static inline void
seq_printf(struct seq_file *m, const char *fmt, ...) {};

static inline void
seq_puts(struct seq_file *m, const char *s) {};

#endif