Skip to content

Commit

Permalink
Merge branch 'pcmcia' of git://git.kernel.org/pub/scm/linux/kernel/gi…
Browse files Browse the repository at this point in the history
…t/brodo/pcmcia

Pull pcmcia updates from Dominik Brodowski:
 "The linux-pcmcia mailing list was shut down, so offer an alternative
  path for patches in MAINTAINERS.

  Also, throw in two odd fixes for the pcmcia subsystem"

* 'pcmcia' of git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia:
  pcmcia: soc_common: Handle return value of clk_prepare_enable
  pcmcia: use proper printk format for resource
  pcmcia: remove mailing list, update MAINTAINERS
  • Loading branch information
Linus Torvalds committed Feb 8, 2018
2 parents fe26adf + d3fdd70 commit 605dc77
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
6 changes: 2 additions & 4 deletions MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -10799,11 +10799,9 @@ S: Maintained
F: drivers/pci/dwc/*spear*

PCMCIA SUBSYSTEM
P: Linux PCMCIA Team
L: linux-pcmcia@lists.infradead.org
W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
M: Dominik Brodowski <linux@dominikbrodowski.net>
T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
S: Maintained
S: Odd Fixes
F: Documentation/pcmcia/
F: tools/pcmcia/
F: drivers/pcmcia/
Expand Down
2 changes: 1 addition & 1 deletion drivers/pcmcia/rsrc_nonstatic.c
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ static int do_validate_mem(struct pcmcia_socket *s,
}
}

dev_dbg(&s->dev, "cs: memory probe 0x%06lx-0x%06lx: %p %p %u %u %u",
dev_dbg(&s->dev, "cs: memory probe 0x%06lx-0x%06lx: %pr %pr %u %u %u",
base, base+size-1, res1, res2, ret, info1, info2);

free_region(res2);
Expand Down
8 changes: 6 additions & 2 deletions drivers/pcmcia/soc_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -191,12 +191,16 @@ static int soc_pcmcia_hw_init(struct soc_pcmcia_socket *skt)
{
int ret = 0, i;

clk_prepare_enable(skt->clk);
ret = clk_prepare_enable(skt->clk);
if (ret)
return ret;

if (skt->ops->hw_init) {
ret = skt->ops->hw_init(skt);
if (ret)
if (ret) {
clk_disable_unprepare(skt->clk);
return ret;
}
}

for (i = 0; i < ARRAY_SIZE(skt->stat); i++) {
Expand Down

0 comments on commit 605dc77

Please sign in to comment.