[IA64] generalize attribute of fsyscall_gtod_data

In an ordinary way,

> } __attribute__ ((aligned (L1_CACHE_BYTES)));

should be

> } ____cacheline_aligned;

to save some bytes on an uni-processor.

Signed-off-by: Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>

authored by Hidetoshi Seto and committed by Tony Luck acffc84a 410ab512

+2 -2
+2 -2
arch/ia64/kernel/fsyscall_gtod_data.h
··· 14 14 u32 clk_shift; 15 15 void *clk_fsys_mmio; 16 16 cycle_t clk_cycle_last; 17 - } __attribute__ ((aligned (L1_CACHE_BYTES))); 17 + } ____cacheline_aligned; 18 18 19 19 struct itc_jitter_data_t { 20 20 int itc_jitter; 21 21 cycle_t itc_lastcycle; 22 - } __attribute__ ((aligned (L1_CACHE_BYTES))); 22 + } ____cacheline_aligned; 23 23