On 25 September 2011 19:14, Antony Pavlov <antonynpav...@gmail.com> wrote: > The commit fc2bf44972349b078d8310466c3866615500e67f > changed the type of val argument of the function gt64120_writel() > from uint32_t to uint64_t, so we need to change the corresponding > length modifier from '%x' to '%llx'.
For a uint64_t you need to use PRIx64 -- '%llx' won't work on systems where uint64_t isn't typedefed as 'long long'. -- PMM