event/sw: fix build with icc
authorFerruh Yigit <ferruh.yigit@intel.com>
Wed, 5 Apr 2017 15:32:10 +0000 (16:32 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 5 Apr 2017 16:20:42 +0000 (18:20 +0200)
commitfa865c012b4bd67e0d26902f5255a10a13b89919
treeebb272dc16dc348e284e0c868365fb53ab71dae0
parenta175e38f2ef94c0d8033955d6406d96cd2125134
event/sw: fix build with icc

build error:
.../drivers/event/sw/sw_evdev_scheduler.c(379):
error #300: const variable "dummy_rob" requires an initializer
        static const struct reorder_buffer_entry dummy_rob;
                                                          ^

Variable "dummy_rob" defined as const but already cast to another
pointer and its content updated. Remove const qualifier from variable.

Fixes: 617995dfc5b2 ("event/sw: add scheduling logic")

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
drivers/event/sw/sw_evdev_scheduler.c