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

Commit 6501ff60 authored by Pierre Ossman's avatar Pierre Ossman
Browse files

sdio: give sdio irq thread a host specific name



There is one thread per host controller so make sure they all get
unique names.

Signed-off-by: default avatarPierre Ossman <drzeus@drzeus.cx>
parent e633b7bc
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -159,7 +159,8 @@ static int sdio_card_irq_get(struct mmc_card *card)
	if (!host->sdio_irqs++) {
		atomic_set(&host->sdio_irq_thread_abort, 0);
		host->sdio_irq_thread =
			kthread_run(sdio_irq_thread, host, "ksdiorqd");
			kthread_run(sdio_irq_thread, host, "ksdioirqd/%s",
				mmc_hostname(host));
		if (IS_ERR(host->sdio_irq_thread)) {
			int err = PTR_ERR(host->sdio_irq_thread);
			host->sdio_irqs--;