firmware/nvram: bcm47xx: Don't use "proxy" headers

Update header inclusions to follow IWYU (Include What You Use)
principle.

Note that kernel.h is discouraged to be included as it's written
at the top of that file.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Florian Fainelli <florian.fainelli@broadcom.com>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
This commit is contained in:
Andy Shevchenko 2025-06-26 20:59:26 +03:00 committed by Thomas Bogendoerfer
parent 86731a2a65
commit 002d90627c
2 changed files with 1 additions and 2 deletions

View File

@ -7,7 +7,6 @@
#include <linux/errno.h> #include <linux/errno.h>
#include <linux/types.h> #include <linux/types.h>
#include <linux/kernel.h>
#include <linux/vmalloc.h> #include <linux/vmalloc.h>
#ifdef CONFIG_BCM47XX_NVRAM #ifdef CONFIG_BCM47XX_NVRAM

View File

@ -5,8 +5,8 @@
#ifndef __BCM47XX_SPROM_H #ifndef __BCM47XX_SPROM_H
#define __BCM47XX_SPROM_H #define __BCM47XX_SPROM_H
#include <linux/errno.h>
#include <linux/types.h> #include <linux/types.h>
#include <linux/kernel.h>
#include <linux/vmalloc.h> #include <linux/vmalloc.h>
struct ssb_sprom; struct ssb_sprom;