History log of /openbmc/u-boot/include/linux/types.h (Results 1 – 19 of 19)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: v00.04.15, v00.04.14, v00.04.13, v00.04.12, v00.04.11, v00.04.10, v00.04.09, v00.04.08, v00.04.07, v00.04.06, v00.04.05, v00.04.04, v00.04.03, v00.04.02, v00.04.01, v00.04.00, v2021.04, v00.03.03, v2021.01, v2020.10, v2020.07, v00.02.13, v2020.04, v2020.01, v2019.10, v00.02.05, v00.02.04, v00.02.03, v00.02.02, v00.02.01, v2019.07, v00.02.00, v2019.04
# 401c2540 15-Dec-2018 Tom Rini <trini@konsulko.com>

Merge branch 'master' of git://git.denx.de/u-boot-usb

- Second half of the USB Gadget DM conversion


# 916fa097 23-Nov-2018 Lukasz Majewski <lukma@denx.de>

usb: composite: Move bitmap related operations to ./include/linux/bitmap.h

The BITMAP related operations can now be moved to ./include/linux/bitmap.h
file to mimic the Linux kernel directory tree.

usb: composite: Move bitmap related operations to ./include/linux/bitmap.h

The BITMAP related operations can now be moved to ./include/linux/bitmap.h
file to mimic the Linux kernel directory tree.

This change also allows to remove the lin_gadget_compat.h header file
(which is a legacy code only for composite U-boot layer).
It was also possible to remove #includes from several USB gadget drivers.

Signed-off-by: Lukasz Majewski <lukma@denx.de>
Reviewed-by: Stefan Agner <stefan.agner@toradex.com>

show more ...


# 9865543a 06-Aug-2018 Masahiro Yamada <yamada.masahiro@socionext.com>

Remove CONFIG_USE_STDINT

You do not need to use the typedefs provided by compiler.

Our compilers are either IPL32 or LP64. Hence, U-Boot can/should
always use int-ll64.h typedefs like Linux kernel

Remove CONFIG_USE_STDINT

You do not need to use the typedefs provided by compiler.

Our compilers are either IPL32 or LP64. Hence, U-Boot can/should
always use int-ll64.h typedefs like Linux kernel, whatever the
typedefs the compiler internally uses.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>

show more ...


Revision tags: v2018.07, v2018.03, v2018.01, v2017.11
# 1c4b453a 17-Oct-2017 Masahiro Yamada <yamada.masahiro@socionext.com>

linux/types.h: add typedef of uintptr_t

Add this typedef in the same place as in Linux. This is necessary
to refactor libfdt inclusion.

U-Boot also defines it in include/compiler.h. Of course it

linux/types.h: add typedef of uintptr_t

Add this typedef in the same place as in Linux. This is necessary
to refactor libfdt inclusion.

U-Boot also defines it in include/compiler.h. Of course it should
not do that, but I do not want to open a can of worms.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>

show more ...


Revision tags: v2016.07
# 95ebc253 27-Jun-2016 Masahiro Yamada <yamada.masahiro@socionext.com>

types.h: move and redefine resource_size_t

Currently, this is only defined in arch/arm/include/asm/types.h,
so move it to include/linux/types.h to make it available for all
architectures.

I defined

types.h: move and redefine resource_size_t

Currently, this is only defined in arch/arm/include/asm/types.h,
so move it to include/linux/types.h to make it available for all
architectures.

I defined it with phys_addr_t as Linux does. I needed to surround
the define with #ifdef __KERNEL__ ... #endif to avoid build errors
in tools building. (Host tools should not include <linux/types.h>
in the first place, but this is already messy in U-Boot...)

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Simon Glass <sjg@chromium.org>

show more ...


Revision tags: openbmc-20160624-1
# 2e680f92 16-Dec-2015 York Sun <yorksun@freescale.com>

Revert "include/linux: move typdef for uintptr_t"

This reverts commit e8f954a756a825130d11b9c8fca70101dd8b3ac5, which
causes compiling errors on 32-bit hosts.

Acked-by: Aneesh Bansal <aneesh.bansal

Revert "include/linux: move typdef for uintptr_t"

This reverts commit e8f954a756a825130d11b9c8fca70101dd8b3ac5, which
causes compiling errors on 32-bit hosts.

Acked-by: Aneesh Bansal <aneesh.bansal@freescale.com>
Signed-off-by: York Sun <yorksun@freescale.com>

show more ...


# e6e3faa5 14-Dec-2015 Tom Rini <trini@konsulko.com>

Merge branch 'master' of git://git.denx.de/u-boot-fsl-qoriq


# e8f954a7 08-Dec-2015 Aneesh Bansal <aneesh.bansal@freescale.com>

include/linux: move typdef for uintptr_t

uintptr_t which is a typdef for unsigned long is needed for creating
pointers (32 or 64 bit depending on Core) from 32 bit variables
storing the address.
If

include/linux: move typdef for uintptr_t

uintptr_t which is a typdef for unsigned long is needed for creating
pointers (32 or 64 bit depending on Core) from 32 bit variables
storing the address.
If a 32 bit variable (u32) is typecasted to a pointer (void *),
compiler gives a warning in case size of pointer on the core is 64 bit.

The typdef has been moved from include/compiler.h to include/linux/types.h

Signed-off-by: Aneesh Bansal <aneesh.bansal@freescale.com>
Reviewed-by: York Sun <yorksun@freescale.com>

show more ...


Revision tags: v2016.01-rc1, v2015.10, v2015.10-rc5, v2015.10-rc4, v2015.10-rc3, v2015.10-rc2
# 1a2728ae 05-Aug-2015 Tom Rini <trini@konsulko.com>

Merge git://git.denx.de/u-boot-x86


Revision tags: v2015.10-rc1
# 5598facb 31-Jul-2015 Simon Glass <sjg@chromium.org>

Bring in __aligned_u64 and friends to linux/types.h

These will be used for efi.h both for U-Boot running as an EFI application
and as a payload. They come from Linux 4.1.

Signed-off-by: Simon Glass

Bring in __aligned_u64 and friends to linux/types.h

These will be used for efi.h both for U-Boot running as an EFI application
and as a payload. They come from Linux 4.1.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>

show more ...


Revision tags: v2015.07, v2015.07-rc3, v2015.07-rc2, v2015.07-rc1, v2015.04, v2015.04-rc5, v2015.04-rc4, v2015.04-rc3, v2015.04-rc2, v2015.04-rc1, v2015.01, v2015.01-rc4, v2015.01-rc3, v2015.01-rc2, v2015.01-rc1
# 0d296cc2 15-Oct-2014 Gabe Black <gabeblack@chromium.org>

Provide option to avoid defining a custom version of uintptr_t.

There's a definition in stdint.h (provided by gcc) which will be more correct
if available.

Define CONFIG_USE_STDINT to use this feat

Provide option to avoid defining a custom version of uintptr_t.

There's a definition in stdint.h (provided by gcc) which will be more correct
if available.

Define CONFIG_USE_STDINT to use this feature, or USE_STDINT=1 on the 'make'
commmand.

This adjusts the settings for x86 and sandbox, with both have 64-bit options.

Signed-off-by: Gabe Black <gabeblack@google.com>
Reviewed-by: Gabe Black <gabeblack@chromium.org>
Tested-by: Gabe Black <gabeblack@chromium.org>
Reviewed-by: Bill Richardson <wfrichar@google.com>
Rewritten to be an option, since stdint.h is often available only in glibc.
Changed to preserve a clear boundary between stdint and non-stdint
Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...


Revision tags: v2014.10, v2014.10-rc3, v2014.10-rc2, v2014.10-rc1, v2014.07, v2014.07-rc4, v2014.07-rc3, v2014.07-rc2, v2014.07-rc1, v2014.04, v2014.04-rc3, v2014.04-rc2, v2014.04-rc1, v2014.01, v2014.01-rc3, v2014.01-rc2, v2014.01-rc1, v2013.10
# 643aae14 07-Oct-2013 Masahiro Yamada <yamada.m@jp.panasonic.com>

include: delete include/linux/config.h

Linux Kernel abolished include/linux/config.h long time ago.
(around version v2.6.18..v2.6.19)

We don't need to provide Linux copatibility any more.

This com

include: delete include/linux/config.h

Linux Kernel abolished include/linux/config.h long time ago.
(around version v2.6.18..v2.6.19)

We don't need to provide Linux copatibility any more.

This commit deletes include/linux/config.h
and fixes source files not to include this.

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>

show more ...


Revision tags: v2013.10-rc4, v2013.10-rc3, v2013.10-rc2, v2013.10-rc1, v2013.07, v2013.07-rc3, v2013.07-rc2, v2013.07-rc1, v2013.04, v2013.04-rc3
# 18122019 12-Apr-2013 Albert ARIBAUD <albert.u.boot@aribaud.net>

Merge branch 'u-boot/master' into 'u-boot-arm/master'

Conflicts:
drivers/video/exynos_fb.c


Revision tags: v2013.04-rc2
# 472d5460 01-Apr-2013 York Sun <yorksun@freescale.com>

Consolidate bool type

'bool' is defined in random places. This patch consolidates them into a
single header file include/linux/types.h, using stdbool.h introduced in C99.

All other #define, typedef

Consolidate bool type

'bool' is defined in random places. This patch consolidates them into a
single header file include/linux/types.h, using stdbool.h introduced in C99.

All other #define, typedef and enum are removed. They are all consistent with
true = 1, false = 0.

Replace FALSE, False with false. Replace TRUE, True with true.
Skip *.py, *.php, lib/* files.

Signed-off-by: York Sun <yorksun@freescale.com>

show more ...


Revision tags: v2013.04-rc1, v2013.01.01, v2013.01, v2013.01-rc3, v2013.01-rc2, v2013.01-rc1, v2012.10, v2012.10-rc3, v2012.10-rc2, v2012.10-rc1, v2012.07, v2012.07-rc3, v2012.07-rc2, v2012.07-rc1, v2012.04.01, v2012.04, v2012.04-rc3, v2012.04-rc2, v2012.04-rc1, v2011.12, v2011.12-rc3, v2011.12-rc2, v2011.12-rc1, v2011.09, v2011.09-rc2, v2011.09-rc1, v2011.06, v2011.06-rc3, v2011.06-rc2, v2011.06-rc1, v2011.03, v2011.03-rc2, v2011.03-rc1, v2010.12, v2010.12-rc3, v2010.12-rc2, v2010.12-rc1, v2010.09, v2010.09-rc2, v2010.09-rc1, v2010.06, v2010.06-rc3, v2010.06-rc2, v2010.06-rc1, v2010.03, v2010.03-rc3, v2010.03-rc2, v2010.03-rc1, v2009.11.1, v2009.11, v2009.11-rc2, v2009.11-rc1, v2009.08, v2009.08-rc3, v2009.08-rc2, v2009.08-rc1, v2009.06, v2009.06-rc3, v2009.06-rc2, v2009.06-rc1, v2009.03, v2009.03-rc2, v2009.03-rc1
# be4880eb 21-Jan-2009 Kim Phillips <kim.phillips@freescale.com>

Merge branch 'master' into next


Revision tags: v2009.01, v2009.01-rc3, v2009.01-rc2
# cb547320 17-Dec-2008 Haavard Skinnemoen <haavard.skinnemoen@atmel.com>

Merge branch 'fixes' into cleanups

Conflicts:

board/atmel/atngw100/atngw100.c
board/atmel/atstk1000/atstk1000.c
cpu/at32ap/at32ap700x/gpio.c
include/asm-avr32/arch-at32ap700x/clk.h
include/con

Merge branch 'fixes' into cleanups

Conflicts:

board/atmel/atngw100/atngw100.c
board/atmel/atstk1000/atstk1000.c
cpu/at32ap/at32ap700x/gpio.c
include/asm-avr32/arch-at32ap700x/clk.h
include/configs/atngw100.h
include/configs/atstk1002.h
include/configs/atstk1003.h
include/configs/atstk1004.h
include/configs/atstk1006.h
include/configs/favr-32-ezkit.h
include/configs/hammerhead.h
include/configs/mimc200.h

show more ...


Revision tags: v2009.01-rc1
# f9b354fa 25-Nov-2008 Wolfgang Denk <wd@denx.de>

Merge branch 'master' of git://git.denx.de/u-boot-ubi


# 7e6ee7ad 19-Nov-2008 Kyungmin Park <kyungmin.park@samsung.com>

UBI: Add basic UBI support to U-Boot (Part 6/8)

This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
It's based on the Linux UBI version and basically has a "OS"
translation wrapper t

UBI: Add basic UBI support to U-Boot (Part 6/8)

This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
It's based on the Linux UBI version and basically has a "OS"
translation wrapper that defines most Linux specific calls
(spin_lock() etc.) into no-ops. Some source code parts have been
uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
this version with the Linux version and simplifies future UBI
ports/bug-fixes from the Linux version.

Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Stefan Roese <sr@denx.de>

show more ...


Revision tags: v2008.10, v2008.10-rc3, v2008.10-rc2, v2008.10-rc1, v1.3.4, v1.3.4-rc2, v1.3.4-rc1, v1.3.3, v1.3.3-rc3, v1.3.3-rc2, v1.3.3-rc1, v1.3.2, v1.3.2-rc3, v1.3.2-rc2, v1.3.2-rc1, v1.3.1, v1.3.1-rc1, v1.3.0, v1.3.0-rc4, v1.3.0-rc3, v1.3.0-rc2, v1.3.0-rc1, U-Boot-1_2_0, U-Boot-1_1_6, U-Boot-1_1_5, LABEL_2006_06_30_2020, LABEL_2006_05_19_1133, LABEL_2006_05_10_1800, LABEL_2006_04_18_1106, LABEL_2006_03_12_0025, U-Boot-1_1_4, DENX-2005-10-29-2350, LABEL_2005_09_15_2320, U-Boot-1_1_3, LABEL_2005_08_12_0050, LABEL_2005_07_04_0202, LABEL_2005_05_13_0050, LABEL_2005_05_09_1245, LABEL_2005_05_05_1920, LABEL_2005_04_14_0115, LABEL_2005_04_05_2345, LABEL_2005_04_05_1830, LABEL_2005_03_15_0125, LABEL_2005_03_06_0225, LABEL_2005_02_28_0050, LABEL_2005_02_08_1615, LABEL_2005_02_07_2045, LABEL_2005_01_31_2245, U-Boot-1_1_2, LABEL_2004_12_20_1220, LABEL_2004_12_19_2240, LABEL_2004_12_19_1100, LABEL_2004_12_18_2335, LABEL_2004_11_25_0035, LABEL_2004_11_17_2222, LABEL_2004_10_20_0020, LABEL_2004_10_12_0110, LABEL_2004_09_09_0000, LABEL_2004_08_29_0045, LABEL_2004_08_28_2355, LABEL_2004_07_01_1200, LABEL_2004_06_24_1800, LABEL_2004_05_29_1850, LABEL_2004_05_19_2335, U-Boot-1_1_1, LABEL_2004_04_23_2240, LABEL_2004_04_18_2135, U-Boot-1_1_0, LABEL_2004_03_25_1630, LABEL_2004_03_16_2330, LABEL_2004_03_14_2340, LABEL_2004_03_12_0130, LABEL_2004_02_24_0305, LABEL_2004_02_20_2310, U-Boot-1_0_2, LABEL_2004_02_11_2240, LABEL_2004_01_21_2110, LABEL_2004_01_29_1030, U-Boot-1_0_1, LABEL_2003_12_06_1550, LABEL_2003_11_26_MKR, U-Boot-1_0_0, LABEL_2003_10_20_0025, LABEL_2003_10_16_0200, LABEL_2003_10_14_2140, LABEL_2003_10_10_1200, LABEL_2003_10_09_2320, LABEL_2003_10_09_1515, LABEL_2003_10_06_2355, LABEL_2003_10_01_1830, LABEL_2003_09_18_2045, LABEL_2003_09_16_2310, LABEL_2003_09_13_2100, LABEL_2003_09_12_1745, LABEL_2003_09_12_0110, U-Boot-0_4_8, LABEL_2003_09_06_0055, U-Boot-0_4_7, U-Boot-0_4_6, U-Boot-0_4_5, U-Boot-0_4_4, U-Boot-0_4_3, U-Boot-0_4_2, U-Boot-0_4_1, LABEL_2003_06_29_0145, LABEL_2003_06_28_1800-stable, LABEL_2003_06_28_0130-stable, LABEL_2003_06_28_0050-stable, LABEL_2003_06_27_2340, U-Boot-0_4_0, LABEL_2003_06_26_2220, LABEL_2003_06_22_1530, LABEL_2003_06_16_0055, LABEL_2003_06_05_2140, LABEL_2003_06_04_0200, LABEL_2003_05_31_2115, LABEL_2003_05_30_1450, LABEL_2003_05_23_1450, LABEL_2003_05_23_0055, LABEL_2003_05_22_2230, LABEL_2003_05_20_2250, LABEL_2003_05_20_1630, LABEL_2003_05_12_2355, LABEL_2003_05_03_1700, U-Boot-0_3_1, LABEL_2003_04_15_1900, U-Boot-0_3_0, LABEL_2003_04_05_0300, LABEL_2003_03_27_1900, LABEL_2003_03_26_1300, LABEL_2003_03_25_1830, LABEL_2003_03_14_2150, LABEL_2003_03_06_2255, LABEL_2003_03_06_1440, LABEL_2003_03_06_0200, LABEL_2003_03_06_0050, LABEL_2003_02_28_0150, LABEL_2003_01_14_0055, LABEL_2003_01_11_1050, LABEL_2002_12_28_1700, LABEL_2002_12_21_0040, U-Boot-0_2_0, LABEL_2002_12_07_0120, LABEL_2002_12_03_2230, LABEL_2002_11_22_0015, LABEL_2002_11_18_0115, LABEL_2002_11_11_2211, LABEL_2002_11_10_2310, LABEL_2002_11_05_1735, LABEL_2002_11_05_0120, U_BOOT_0_1_0
# b15cbc0b 21-Aug-2000 wdenk <wdenk>

Initial revision