]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: vme: fix bogus clearing of the bus number in vme_free_bus_num
authorEmilio G. Cota <cota@braap.org>
Fri, 12 Nov 2010 11:14:27 +0000 (11:14 +0000)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 16 Nov 2010 19:40:14 +0000 (11:40 -0800)
Signed-off-by: Emilio G. Cota <cota@braap.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/vme/vme.c

index 47e9d5ccf784d7938d611f57bf4738f374b4fff1..d9fc8644376e1f42e9a938422cf329bb5f862f80 100644 (file)
@@ -1326,7 +1326,7 @@ static int vme_alloc_bus_num(void)
 static void vme_free_bus_num(int bus)
 {
        mutex_lock(&vme_bus_num_mtx);
-       vme_bus_numbers |= ~(0x1 << bus);
+       vme_bus_numbers &= ~(0x1 << bus);
        mutex_unlock(&vme_bus_num_mtx);
 }