Re: [LEDE-DEV] [PATCH v2 2/5] tools/mtd-utils: Mark some lzma functions as static

2018-04-21 Thread Koen Vandeputte
Tested-by: Koen Vandeputte Tested on imx6, also using the imagebuilder afterwards. ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

[LEDE-DEV] [PATCH v2 2/5] tools/mtd-utils: Mark some lzma functions as static

2018-04-19 Thread Hauke Mehrtens
These functions are not declared in any header file and only used in same compile unit, mark them as static to remove one gcc warning and make it easier for the compiler to optimize them out. This also fixes some style problems to make this patch match the version in the packages folder. This is