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
interval_tree.c
#include <linux/interval_tree.h>
#include <linux/interval_tree_generic.h>
#include <linux/compiler.h>
#include <linux/export.h>

#define START(node) ((node)->start)
#define LAST(node)  ((node)->last)

INTERVAL_TREE_DEFINE(struct interval_tree_node, rb,
		     unsigned long, __subtree_last,
		     START, LAST,, interval_tree)

EXPORT_SYMBOL_GPL(interval_tree_insert);
EXPORT_SYMBOL_GPL(interval_tree_remove);
EXPORT_SYMBOL_GPL(interval_tree_iter_first);
EXPORT_SYMBOL_GPL(interval_tree_iter_next);
back to top