Ignore:
Timestamp:
Mar 18, 2021, 8:57:36 PM (4 years ago)
Author:
David Azarewicz
Message:

Merge changes from Paul's uniaud32next branch.

Location:
GPL/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • GPL/trunk

  • GPL/trunk/include/linux/lockdep.h

    r442 r679  
    11#ifndef __LINUX_LOCKDEP_H
    22#define __LINUX_LOCKDEP_H
     3
     4#include <linux/types.h>
     5
    36#define SINGLE_DEPTH_NESTING                    1
    47/*
     
    1215#define spin_lock_nested(lock, x)               spin_lock(lock)
    1316#define spin_lock_irqsave_nested(lock, f, x)    spin_lock_irqsave(lock, f)
    14 
    15 
     17#define lockdep_set_novalidate_class(lock) do { } while (0)
     18# define lockdep_set_class_and_name(lock, key, name) \
     19                do { (void)(key); (void)(name); } while (0)
     20struct lock_class_key {int not_used; };
    1621#endif /* __LINUX_LOCKDEP_H */
Note: See TracChangeset for help on using the changeset viewer.