提交 3a91e959 编写于 作者: N Nicolas Pitre 提交者: Jaroslav Kysela

[ALSA] remove bogus match method for ac97_bus

AC97 Codec
The bus_id is initialized with a generic identifier string which is not
really useful for proper driver matching.  Let the driver decide what it
needs via its probe method instead.
Signed-off-by: NNicolas Pitre <nico@cam.org>
Signed-off-by: NTakashi Iwai <tiwai@suse.de>
上级 460dc98a
...@@ -17,12 +17,13 @@ ...@@ -17,12 +17,13 @@
#include <linux/string.h> #include <linux/string.h>
/* /*
* Codec families have names seperated by commas, so we search for an * Let drivers decide whether they want to support given codec from their
* individual codec name within the family string. * probe method. Drivers have direct access to the ac97_t structure and may
* decide based on the id field amongst other things.
*/ */
static int ac97_bus_match(struct device *dev, struct device_driver *drv) static int ac97_bus_match(struct device *dev, struct device_driver *drv)
{ {
return (strstr(dev->bus_id, drv->name) != NULL); return 1;
} }
static int ac97_bus_suspend(struct device *dev, pm_message_t state) static int ac97_bus_suspend(struct device *dev, pm_message_t state)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册