bcm63xx: remove bcm_tag usage in kernel
authorjogo <jogo@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 9 Oct 2012 08:08:49 +0000 (08:08 +0000)
committerjogo <jogo@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 9 Oct 2012 08:08:49 +0000 (08:08 +0000)
Fixes #12292.

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33670 3c298f89-4303-0410-b956-a3cf2f4a3e73

target/linux/brcm63xx/patches-3.3/304-boardid_fixup.patch
target/linux/brcm63xx/patches-3.3/401-MIPS-BCM63XX-register-ohci-device.patch
target/linux/brcm63xx/patches-3.3/403-MIPS-BCM63XX-register-ehci-device.patch
target/linux/brcm63xx/patches-3.3/428-MIPS-BCM63XX-move-nvram-related-functions-into-their.patch
target/linux/brcm63xx/patches-3.3/432-BCM63XX-allow-providing-fixup-data-in-board-data.patch
target/linux/brcm63xx/patches-3.3/501-board-NB4.patch
target/linux/brcm63xx/patches-3.3/528-board_nb6.patch

index 0c2fab5..3b9e23e 100644 (file)
@@ -4,7 +4,7 @@
  #include <bcm63xx_dev_pcmcia.h>
  #include <bcm63xx_dev_spi.h>
  #include <board_bcm963xx.h>
-+#include <bcm_tag.h>
++#include <bcm963xx_tag.h>
  
  #define PFX   "board_bcm963xx: "
  
 +      struct bcm_tag *tag = (struct bcm_tag *)(boot_addr + CFE_OFFSET_64K);
 +
 +      /* check if bcm_tag is at 64k offset */
-+      if (strncmp(nvram.name, tag->boardid, BOARDID_LEN) != 0) {
++      if (strncmp(nvram.name, tag->board_id, BOARDID_LEN) != 0) {
 +              /* else try 128k */
 +              tag = (struct bcm_tag *)(boot_addr + CFE_OFFSET_128K);
-+              if (strncmp(nvram.name, tag->boardid, BOARDID_LEN) != 0) {
++              if (strncmp(nvram.name, tag->board_id, BOARDID_LEN) != 0) {
 +                      /* No tag found */
 +                      printk(KERN_DEBUG "No bcm_tag found!\n");
 +                      return;
index 27ecc5a..33b1a39 100644 (file)
@@ -67,7 +67,7 @@ Subject: [PATCH 24/63] MIPS: BCM63XX: register ohci device.
  #include <bcm63xx_dev_spi.h>
 +#include <bcm63xx_dev_usb_ohci.h>
  #include <board_bcm963xx.h>
- #include <bcm_tag.h>
+ #include <bcm963xx_tag.h>
  
 @@ -916,6 +917,9 @@ int __init board_register_devices(void)
            !board_get_mac_address(board.enet1.mac_addr))
index cd5eb73..d6773d5 100644 (file)
@@ -49,7 +49,7 @@ Subject: [PATCH 26/63] MIPS: BCM63XX: register ehci device.
  #include <bcm63xx_dev_usb_ohci.h>
 +#include <bcm63xx_dev_usb_ehci.h>
  #include <board_bcm963xx.h>
- #include <bcm_tag.h>
+ #include <bcm963xx_tag.h>
  
 @@ -917,6 +918,9 @@ int __init board_register_devices(void)
            !board_get_mac_address(board.enet1.mac_addr))
index ff2a831..8ebbdb7 100644 (file)
@@ -91,12 +91,12 @@ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
 +      char *board_name = (char *)bcm63xx_nvram_get_name();
  
        /* check if bcm_tag is at 64k offset */
--      if (strncmp(nvram.name, tag->boardid, BOARDID_LEN) != 0) {
-+      if (strncmp(board_name, tag->boardid, BOARDID_LEN) != 0) {
+-      if (strncmp(nvram.name, tag->board_id, BOARDID_LEN) != 0) {
++      if (strncmp(board_name, tag->board_id, BOARDID_LEN) != 0) {
                /* else try 128k */
                tag = (struct bcm_tag *)(boot_addr + CFE_OFFSET_128K);
--              if (strncmp(nvram.name, tag->boardid, BOARDID_LEN) != 0) {
-+              if (strncmp(board_name, tag->boardid, BOARDID_LEN) != 0) {
+-              if (strncmp(nvram.name, tag->board_id, BOARDID_LEN) != 0) {
++              if (strncmp(board_name, tag->board_id, BOARDID_LEN) != 0) {
                        /* No tag found */
                        printk(KERN_DEBUG "No bcm_tag found!\n");
                        return;
index 742d115..e0e4a47 100644 (file)
@@ -13,7 +13,7 @@ Subject: [PATCH 67/80] BCM63XX: allow providing fixup data in board data
 @@ -33,6 +33,7 @@
  #include <bcm63xx_dev_usb_ehci.h>
  #include <board_bcm963xx.h>
- #include <bcm_tag.h>
+ #include <bcm963xx_tag.h>
 +#include <pci_ath9k_fixup.h>
  
  #define PFX   "board_bcm963xx: "
index 2f96f4b..0f4c26a 100644 (file)
 +      }
 +
        /* check if bcm_tag is at 64k offset */
-       if (strncmp(board_name, tag->boardid, BOARDID_LEN) != 0) {
+       if (strncmp(board_name, tag->board_id, BOARDID_LEN) != 0) {
                /* else try 128k */
index e3f9382..58bd3ef 100644 (file)
 +      }
 +
        /* check if bcm_tag is at 64k offset */
-       if (strncmp(board_name, tag->boardid, BOARDID_LEN) != 0) {
+       if (strncmp(board_name, tag->board_id, BOARDID_LEN) != 0) {
                /* else try 128k */