]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
Driver core: fix driver_register() return value
authorStas Sergeev <stsp@aknet.ru>
Sat, 17 Oct 2009 20:31:38 +0000 (00:31 +0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 10 Nov 2009 00:51:59 +0000 (16:51 -0800)
commitcc943ca634e17ad529306f9d08a7841f0129952c
tree35b957e6276091d14addc6c6b88b4ebc1b489cbc
parentc99974ec505348f5d38585700c3f95813394ceb7
Driver core: fix driver_register() return value

commit 39acbc12affcaa23ef1d887ba3d197baca8e6e47 upstream.

In this patch:
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=16dc42e018c2868211b4928f20a957c0c216126c
the check was added for another driver to already claim the same device
on the same bus. But the returned error code was wrong: to modprobe, the
-EEXIST means that _this_ driver is already installed. It therefore
doesn't produce the needed error message when _another_ driver is trying
to register for the same device.  Returning -EBUSY fixes the problem.

Signed-off-by: Stas Sergeev <stsp@aknet.ru>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/base/driver.c