tangled
alpha
login
or
join now
tjh.dev
/
kernel
1
fork
atom
Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1
fork
atom
overview
issues
pulls
pipelines
Merge branch 'fixes' into next
Ulf Hansson
8 years ago
c42e8e05
f09a7931
+1
-1
1 changed file
expand all
collapse all
unified
split
drivers
mmc
host
sdhci-acpi.c
+1
-1
drivers/mmc/host/sdhci-acpi.c
reviewed
···
680
680
host->hw_name = "ACPI";
681
681
host->ops = &sdhci_acpi_ops_dflt;
682
682
host->irq = platform_get_irq(pdev, 0);
683
683
-
if (host->irq <= 0) {
683
683
+
if (host->irq < 0) {
684
684
err = -EINVAL;
685
685
goto err_free;
686
686
}