diff options
| author | Simon Glass <sjg@chromium.org> | 2019-12-28 10:44:53 -0700 |
|---|---|---|
| committer | Jagan Teki <jagan@amarulasolutions.com> | 2020-01-24 23:06:48 +0530 |
| commit | 1318a0efade80d853e27280adcaf4812d16c742f (patch) | |
| tree | 1d86f466ec8980c02592310a9b0295c07327580d /include/linux | |
| parent | 2fd94aa0f6d4f41d2d13838b9cbd4a21738dccfe (diff) | |
| download | u-boot-1318a0efade80d853e27280adcaf4812d16c742f.tar.gz u-boot-1318a0efade80d853e27280adcaf4812d16c742f.tar.xz u-boot-1318a0efade80d853e27280adcaf4812d16c742f.zip | |
common: Move type declarations to linux/types.h
This file already has lots of type declarations so it seems better to put
all of them there.
Move them.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/types.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/types.h b/include/linux/types.h index bd912bcb42..baa2c491ea 100644 --- a/include/linux/types.h +++ b/include/linux/types.h @@ -163,4 +163,8 @@ struct ustat { #define DECLARE_BITMAP(name, bits) \ unsigned long name[BITS_TO_LONGS(bits)] +typedef volatile unsigned long vu_long; +typedef volatile unsigned short vu_short; +typedef volatile unsigned char vu_char; + #endif /* _LINUX_TYPES_H */ |
