Re: [PATCH 03/18] locking/atomic: generic: use s64 for atomic64

2019-05-22 Thread Arnd Bergmann
On Wed, May 22, 2019 at 3:23 PM Mark Rutland wrote: > > As a step towards making the atomic64 API use consistent types treewide, > let's have the generic atomic64 implementation use s64 as the underlying > type for atomic64_t, rather than long long, matching the generated > headers. > >

[PATCH 03/18] locking/atomic: generic: use s64 for atomic64

2019-05-22 Thread Mark Rutland
As a step towards making the atomic64 API use consistent types treewide, let's have the generic atomic64 implementation use s64 as the underlying type for atomic64_t, rather than long long, matching the generated headers. Otherwise, there should be no functional change as a result of this patch.