Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b1769450 authored by Dominik Brodowski's avatar Dominik Brodowski
Browse files

pcmcia: ensure correct logging in do_io_probe

parent 980fc29f
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -186,12 +186,6 @@ int pcmcia_register_socket(struct pcmcia_socket *socket)

	spin_lock_init(&socket->lock);

	if (socket->resource_ops->init) {
		ret = socket->resource_ops->init(socket);
		if (ret)
			return (ret);
	}

	/* try to obtain a socket number [yes, it gets ugly if we
	 * register more than 2^sizeof(unsigned int) pcmcia
	 * sockets... but the socket number is deprecated
@@ -239,6 +233,12 @@ int pcmcia_register_socket(struct pcmcia_socket *socket)
	mutex_init(&socket->skt_mutex);
	spin_lock_init(&socket->thread_lock);

	if (socket->resource_ops->init) {
		ret = socket->resource_ops->init(socket);
		if (ret)
			goto err;
	}

	tsk = kthread_run(pccardd, socket, "pccardd");
	if (IS_ERR(tsk)) {
		ret = PTR_ERR(tsk);