Re: [Intel-wired-lan] [PATCH net 1/2] e1000e: Fix duplicate include guard

2021-03-02 Thread Neftin, Sasha
On 2/22/2021 06:00, Tom Seewald wrote: The include guard "_E1000_HW_H_" is used by header files in three different drivers (e1000/e1000_hw.h, e1000e/hw.h, and igb/e1000_hw.h). Using the same include guard macro in more than one header file may cause unexpected behavior from the compiler. Fix the

Re: [Intel-wired-lan] [PATCH net 1/2] e1000e: Fix duplicate include guard

2021-03-02 Thread Dvora Fuxbrumer
On 22/02/2021 06:00, Tom Seewald wrote: The include guard "_E1000_HW_H_" is used by header files in three different drivers (e1000/e1000_hw.h, e1000e/hw.h, and igb/e1000_hw.h). Using the same include guard macro in more than one header file may cause unexpected behavior from the compiler. Fix the

[PATCH net 1/2] e1000e: Fix duplicate include guard

2021-02-21 Thread Tom Seewald
The include guard "_E1000_HW_H_" is used by header files in three different drivers (e1000/e1000_hw.h, e1000e/hw.h, and igb/e1000_hw.h). Using the same include guard macro in more than one header file may cause unexpected behavior from the compiler. Fix the duplicate include guard in the e1000e dri