https://github.com/torvalds/linux
Revision 32dafb94a619ef7e62a23e3e3646d0ba0107de32 authored by Linus Torvalds on 19 March 2015, 23:18:30 UTC, committed by Linus Torvalds on 19 March 2015, 23:18:30 UTC
Pull MMC fix from Ulf Hansson:
 "MMC core: fix error path in mmc_pwrseq_simple_alloc()"

* tag 'mmc-v4.0-rc4' of git://git.linaro.org/people/ulf.hansson/mmc:
  mmc: pwrseq_simple: fix error path in mmc_pwrseq_simple_alloc
2 parent s 01d62ee + 6b7a783
Raw File
Tip revision: 32dafb94a619ef7e62a23e3e3646d0ba0107de32 authored by Linus Torvalds on 19 March 2015, 23:18:30 UTC
Merge tag 'mmc-v4.0-rc4' of git://git.linaro.org/people/ulf.hansson/mmc
Tip revision: 32dafb9
irq_regs.c
/* saved per-CPU IRQ register pointer
 *
 * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved.
 * Written by David Howells (dhowells@redhat.com)
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version
 * 2 of the License, or (at your option) any later version.
 */
#include <linux/export.h>
#include <linux/percpu.h>
#include <asm/irq_regs.h>

#ifndef ARCH_HAS_OWN_IRQ_REGS
DEFINE_PER_CPU(struct pt_regs *, __irq_regs);
EXPORT_PER_CPU_SYMBOL(__irq_regs);
#endif
back to top