Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 118181
b: refs/heads/master
c: 05cd254
h: refs/heads/master
i:
  118179: 15ebc9b
v: v3
  • Loading branch information
Russell King authored and Russell King committed Oct 30, 2008
1 parent 5ee6542 commit 4bd9238
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 77 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a0601c8944dc08c2d349c24bd9c0b09c406229fc
refs/heads/master: 05cd2544f4b64d9a9eca0d170191867495e01feb
13 changes: 0 additions & 13 deletions trunk/Documentation/arm/empeg/README

This file was deleted.

49 changes: 0 additions & 49 deletions trunk/Documentation/arm/empeg/ir.txt

This file was deleted.

11 changes: 0 additions & 11 deletions trunk/Documentation/arm/empeg/mkdevs

This file was deleted.

5 changes: 5 additions & 0 deletions trunk/MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -610,6 +610,11 @@ P: Philipp Zabel
M: philipp.zabel@gmail.com
S: Maintained

ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
P: Michael Petchkovsky
M: mkpetch@internode.on.net
S: Maintained

ARM/TOSA MACHINE SUPPORT
P: Dmitry Baryshkov
M: dbaryshkov@gmail.com
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/arm/mm/proc-xsc3.S
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ ENTRY(cpu_xsc3_switch_mm)
cpu_xsc3_mt_table:
.long 0x00 @ L_PTE_MT_UNCACHED
.long PTE_EXT_TEX(1) @ L_PTE_MT_BUFFERABLE
.long PTE_CACHEABLE @ L_PTE_MT_WRITETHROUGH
.long PTE_EXT_TEX(5) | PTE_CACHEABLE @ L_PTE_MT_WRITETHROUGH
.long PTE_CACHEABLE | PTE_BUFFERABLE @ L_PTE_MT_WRITEBACK
.long PTE_EXT_TEX(1) | PTE_BUFFERABLE @ L_PTE_MT_DEV_SHARED
.long 0x00 @ unused
Expand Down
5 changes: 3 additions & 2 deletions trunk/drivers/mmc/host/mmci.c
Original file line number Diff line number Diff line change
Expand Up @@ -391,6 +391,7 @@ static irqreturn_t mmci_irq(int irq, void *dev_id)
static void mmci_request(struct mmc_host *mmc, struct mmc_request *mrq)
{
struct mmci_host *host = mmc_priv(mmc);
unsigned long flags;

WARN_ON(host->mrq != NULL);

Expand All @@ -402,7 +403,7 @@ static void mmci_request(struct mmc_host *mmc, struct mmc_request *mrq)
return;
}

spin_lock_irq(&host->lock);
spin_lock_irqsave(&host->lock, flags);

host->mrq = mrq;

Expand All @@ -411,7 +412,7 @@ static void mmci_request(struct mmc_host *mmc, struct mmc_request *mrq)

mmci_start_command(host, mrq->cmd, 0);

spin_unlock_irq(&host->lock);
spin_unlock_irqrestore(&host->lock, flags);
}

static void mmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
Expand Down

0 comments on commit 4bd9238

Please sign in to comment.