On Tue, Jul 30, 2024 at 09:09:05AM +0200, Oliver Neukum wrote:
1. use a constant, where a constant is usedI think you are suggesting that I should replace hard-coded values like the
buffer size with named constants. For example:
#define BUF_SIZE 8
unsigned char buf[BUF_SIZE];
2. use the macros for converting endiannessCan I use macros like cpu_to_le32 for converting the bl_num and bl_len values.
Should I replace all instances of manual bitwise shifts with these macros?
For example:
u32 bl_len = 0x200;
buf[0] = cpu_to_le32(bl_num) >> 24;
buf[4] = cpu_to_le32(bl_len) >> 24;
Is using cpu_to_le32 appropriate for the data format required by this
device?