Re: [PATCH v2 01/15] net: rnpgbe: Add build support for rnpgbe
From: Andrew Lunn <andrew@lunn.ch>
Date: 2025-07-22 14:59:17
Also in:
linux-doc, lkml
From: Andrew Lunn <andrew@lunn.ch>
Date: 2025-07-22 14:59:17
Also in:
linux-doc, lkml
quoted
quoted
+#include <linux/types.h> +#include <linux/module.h> +#include <linux/pci.h> +#include <linux/netdevice.h> +#include <linux/string.h> +#include <linux/etherdevice.h>It is also reasonably normal to sort includes.Got it, I will also check all other files. But what rules should be followed? General to specific?
All global imports first, and then local.
Andrew