MALI: utgard: upgrade DDK to r6p1-01rel0
[firefly-linux-kernel-4.4.55.git] / drivers / gpu / arm / mali400 / mali / linux / mali_osk_math.c
index 08d4ced5e19be3baa832c409b56b011b5e69944b..3f06723ad062ccc8a19210b9432619a2221fc74c 100755 (executable)
@@ -1,11 +1,11 @@
 /*
- * This confidential and proprietary software may be used only as
- * authorised by a licensing agreement from ARM Limited
- * (C) COPYRIGHT 2008-2010, 2013 ARM Limited
- * ALL RIGHTS RESERVED
- * The entire notice above must be reproduced on all authorised
- * copies and copies may only be made to the extent permitted
- * by a licensing agreement from ARM Limited.
+ * Copyright (C) 2010, 2013-2014, 2016 ARM Limited. All rights reserved.
+ * 
+ * This program is free software and is provided to you under the terms of the GNU General Public License version 2
+ * as published by the Free Software Foundation, and any use by you of this program is subject to the terms of such GNU licence.
+ * 
+ * A copy of the licence is included with the program, and can also be obtained from Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  */
 
 /**
 #include "mali_osk.h"
 #include <linux/bitops.h>
 
-u32 _mali_osk_clz( u32 input )
+u32 _mali_osk_clz(u32 input)
 {
-       return 32-fls(input);
+       return 32 - fls(input);
 }
 
-u32 _mali_osk_fls( u32 input )
+u32 _mali_osk_fls(u32 input)
 {
        return fls(input);
 }