ARM: mali400: r4p0_rel0: fix build errors
authorJoonyoung Shim <jy0922.shim@samsung.com>
Thu, 28 Jul 2016 00:58:10 +0000 (09:58 +0900)
committerJoonyoung Shim <jy0922.shim@samsung.com>
Thu, 28 Jul 2016 01:09:46 +0000 (10:09 +0900)
commit96f21925e74821a10a8c0f5e1faa919db63a0149
tree1611203d89645e4bd87dcb6f110e6b45e75396a7
parentdb753382c086999c77a8df13517fb52ae650a00c
ARM: mali400: r4p0_rel0: fix build errors

Now occurs below build errors with -Werror=date-time. Remove code using
__DATE__ and __TIME__ to fix build errors.

drivers/gpu/arm/mali400/r4p0_rel0/linux/mali_kernel_linux.c: In function 'mali_module_init':
drivers/gpu/arm/mali400/r4p0_rel0/linux/mali_kernel_linux.c:338:71: error: macro "__DATE__" might prevent reproducible builds [-Werror=date-time]
  MALI_DEBUG_PRINT(2, ("Compiled: %s, time: %s.\n", __DATE__, __TIME__));
                                                                       ^
drivers/gpu/arm/mali400/r4p0_rel0/linux/mali_kernel_linux.c:338:1: error: macro "__TIME__" might prevent reproducible builds [-Werror=date-time]
  MALI_DEBUG_PRINT(2, ("Compiled: %s, time: %s.\n", __DATE__, __TIME__));

Change-Id: I3cb0d55619afdffee618b2ae84c9b5c600aae196
Signed-off-by: Joonyoung Shim <jy0922.shim@samsung.com>
drivers/gpu/arm/mali400/r4p0_rel0/linux/mali_kernel_linux.c