Merge tag 'v4.9.326' of git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable into odroidg12-4.9.y

This is the 4.9.326 stable release

Change-Id: I5e46029e0d035c7a06bc35c29d3c6707a3a26c21
This commit is contained in:
Mauro (mdrjr) Ribeiro
2022-11-24 11:58:35 -03:00
97 changed files with 747 additions and 298 deletions

View File

@@ -134,9 +134,9 @@ static inline __attribute_const__ __u32 __fswahb32(__u32 val)
static __always_inline unsigned long __swab(const unsigned long y)
{
#if BITS_PER_LONG == 64
#if __BITS_PER_LONG == 64
return __swab64(y);
#else /* BITS_PER_LONG == 32 */
#else /* __BITS_PER_LONG == 32 */
return __swab32(y);
#endif
}