Revision 43108c72cf1d518f3ce62d3b1c8a9ffa38ddc28b authored by Pavel on 05 January 2020, 22:36:58 UTC, committed by Pavel Machek on 22 January 2020, 20:08:24 UTC
Add pointer to datasheet and fix typo in printk message.

Signed-off-by: Pavel Machek <pavel@ucw.cz>
1 parent 51eb5a2
Raw File
ac97_core.h
/* SPDX-License-Identifier: GPL-2.0-only */
/*
 * Copyright (C) 2016 Robert Jarzmik <robert.jarzmik@free.fr>
 */

unsigned int snd_ac97_bus_scan_one(struct ac97_controller *ac97,
				   unsigned int codec_num);

static inline bool ac97_ids_match(unsigned int id1, unsigned int id2,
				  unsigned int mask)
{
	return (id1 & mask) == (id2 & mask);
}
back to top