* John Stultz <john.stu...@linaro.org> wrote:

> +     nsec >>= timekeeper.shift;
> +
> +     /* If arch requires, add in gettimeoffset() */
> +     nsec += arch_gettimeoffset();
> +     return nsec;

As a factoring out bonus, this could be further shortened to:

        return nsec + arch_gettimeoffset();

> +     /* If arch requires, add in gettimeoffset() */
> +     nsec += arch_gettimeoffset();
> +     return nsec;

Ditto.

Thanks,

        Ingo
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to