brintos

brintos / linux-shallow public Read only

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