Skip to content

Commit 77273ea

Browse files
Sachin Kamatdavem330
authored andcommitted
net: via-rhine: Fix incorrect placement of __initdata
__initdata should be placed between the variable name and equal sign for the variable to be placed in the intended section. Signed-off-by: Sachin Kamat <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 62a8370 commit 77273ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/ethernet/via/via-rhine.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2407,7 +2407,7 @@ static struct pci_driver rhine_driver = {
24072407
.driver.pm = RHINE_PM_OPS,
24082408
};
24092409

2410-
static struct dmi_system_id __initdata rhine_dmi_table[] = {
2410+
static struct dmi_system_id rhine_dmi_table[] __initdata = {
24112411
{
24122412
.ident = "EPIA-M",
24132413
.matches = {

0 commit comments

Comments
 (0)