From: Stas Sergeev Date: Sat, 17 Oct 2009 20:31:38 +0000 (+0400) Subject: Driver core: fix driver_register() return value X-Git-Tag: v2.6.32-rc6~24^2~8 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=39acbc12affcaa23ef1d887ba3d197baca8e6e47;p=pandora-kernel.git Driver core: fix driver_register() return value 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 Cc: stable Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed