root/sound/ac97/ac97_core.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


DEFINITIONS

This source file includes following definitions.
  1. ac97_ids_match

   1 /* SPDX-License-Identifier: GPL-2.0-only */
   2 /*
   3  * Copyright (C) 2016 Robert Jarzmik <robert.jarzmik@free.fr>
   4  */
   5 
   6 unsigned int snd_ac97_bus_scan_one(struct ac97_controller *ac97,
   7                                    unsigned int codec_num);
   8 
   9 static inline bool ac97_ids_match(unsigned int id1, unsigned int id2,
  10                                   unsigned int mask)
  11 {
  12         return (id1 & mask) == (id2 & mask);
  13 }

/* [<][>][^][v][top][bottom][index][help] */