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
kstrtox.h
#ifndef _LIB_KSTRTOX_H
#define _LIB_KSTRTOX_H

#define KSTRTOX_OVERFLOW	(1U << 31)
const char *_parse_integer_fixup_radix(const char *s, unsigned int *base);
unsigned int _parse_integer(const char *s, unsigned int base, unsigned long long *res);

#endif
back to top