summaryrefslogtreecommitdiff
path: root/arch/arm/mach-shmobile/pm-rcar.h
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert+renesas@glider.be>2015-06-04 20:22:28 +0200
committerSimon Horman <horms+renesas@verge.net.au>2015-07-06 09:35:17 +0900
commit6fd2242e60e89a26e731e57dbf8f88d6639e09de (patch)
tree4c3420a3f60983065584f62380a7a1d9da20c56c /arch/arm/mach-shmobile/pm-rcar.h
parent577d104d85f05c1de6e56784a5da3e0fb4746f3a (diff)
downloadlinux-6fd2242e60e89a26e731e57dbf8f88d6639e09de.tar.gz
linux-6fd2242e60e89a26e731e57dbf8f88d6639e09de.tar.xz
ARM: shmobile: R-Car: Shrink rcar_sysc_ch size
Shrink the individual fields in struct rcar_sysc_ch, as unsigned long or int is overkill: - chan_offs contains a register offset relative to a base value (< 512), - chan_bit and isr_bit contain bit indices (0-31). This reduces the size of each instance from 3 (4 on 64-bit) 32-bit words to 1 32-bit word. Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Diffstat (limited to 'arch/arm/mach-shmobile/pm-rcar.h')
-rw-r--r--arch/arm/mach-shmobile/pm-rcar.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-shmobile/pm-rcar.h b/arch/arm/mach-shmobile/pm-rcar.h
index ef3a1ef628f1..06ebf00a6a5a 100644
--- a/arch/arm/mach-shmobile/pm-rcar.h
+++ b/arch/arm/mach-shmobile/pm-rcar.h
@@ -2,9 +2,9 @@
#define PM_RCAR_H
struct rcar_sysc_ch {
- unsigned long chan_offs;
- unsigned int chan_bit;
- unsigned int isr_bit;
+ u16 chan_offs;
+ u8 chan_bit;
+ u8 isr_bit;
};
int rcar_sysc_power_down(struct rcar_sysc_ch *sysc_ch);