Ignore:
Timestamp:
Jan 1, 2021, 5:31:48 AM (5 years ago)
Author:
Paul Smedley
Message:

Add source for uniaud32 based on code from linux kernel 5.4.86

Location:
GPL/branches/uniaud32-next
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • GPL/branches/uniaud32-next/include/linux/stringify.h

    r399 r615  
    11#ifndef __LINUX_STRINGIFY_H
    22#define __LINUX_STRINGIFY_H
     3/* Indirect stringification.  Doing two levels allows the parameter to be a
     4 * macro itself.  For example, compile with -DFOO=bar, __stringify(FOO)
     5 * converts to "bar".
     6 */
     7
     8#define __stringify_1(x,...)    #x
     9#define __stringify(x,...)      __stringify_1(x)
     10
    311#endif /* __LINUX_STRINGIFY_H */
Note: See TracChangeset for help on using the changeset viewer.