]> Git Repo - linux.git/blob - sound/ac97/ac97_core.h
Merge tag 'drm-intel-next-fixes-2020-02-13' of git://anongit.freedesktop.org/drm...
[linux.git] / sound / ac97 / ac97_core.h
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * Copyright (C) 2016 Robert Jarzmik <[email protected]>
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 }
This page took 0.028248 seconds and 4 git commands to generate.