Revision aaa7dd2ced17c8e977faeadc4884c422456371c5 authored by Dave Airlie on 19 February 2016, 02:49:03 UTC, committed by Dave Airlie on 19 February 2016, 02:49:03 UTC
Just two small fixes in the ttm_tt_populate error handling; one for radeon,
one for amdgpu.

* 'drm-fixes-4.5' of git://people.freedesktop.org/~agd5f/linux:
  drm/radeon: use post-decrement in error handling
  drm/amdgpu: use post-decrement in error handling
2 parent s 42412b1 + bc3f5d8
Raw File
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