https://github.com/torvalds/linux
Revision ab5610b434645518aca6e4de5ad851f9fef006f3 authored by Artem Bityutskiy on 08 January 2009, 17:38:07 UTC, committed by David Woodhouse on 09 January 2009, 21:05:21 UTC
'rb_prev()', 'rb_next()' and 'rb_replace_node()' are declared in
include/linux/rbtree.h, no need for JFFS2 to re-declare them. I
believe these are left-overs from the old days when the common
RB tree code did not have those call and JFFS2 had private
implementation.

Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
1 parent 7c51d57
Raw File
Tip revision: ab5610b434645518aca6e4de5ad851f9fef006f3 authored by Artem Bityutskiy on 08 January 2009, 17:38:07 UTC
[JFFS2] remove junk prototypes
Tip revision: ab5610b
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/module.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