summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/drm/include/linux/stringify.h
blob: a541ba6594c394882070cb4666fcf44f848f6576 (plain) (blame)
1
2
3
4
5
6
7
8
9
/* Public domain. */

#ifndef _LINUX_STRINGIFY_H
#define _LINUX_STRINGIFY_H

#define ___stringify(x...)	#x
#define __stringify(x...)	___stringify(x)

#endif