projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
[package] fuse: update to v2.7.4 (#5186)
[openwrt.git]
/
package
/
broadcom-diag
/
src
/
diag.c
diff --git
a/package/broadcom-diag/src/diag.c
b/package/broadcom-diag/src/diag.c
index
e47f281
..
c8c0e34
100644
(file)
--- a/
package/broadcom-diag/src/diag.c
+++ b/
package/broadcom-diag/src/diag.c
@@
-19,7
+19,6
@@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
- * $Id$
*/
#include <linux/module.h>
#include <linux/pci.h>
*/
#include <linux/module.h>
#include <linux/pci.h>
@@
-68,6
+67,7
@@
enum {
WLHDD,
WL300G,
WL320GE,
WLHDD,
WL300G,
WL320GE,
+ WL330GE,
WL500G,
WL500GD,
WL500GP,
WL500G,
WL500GD,
WL500GP,
@@
-307,6
+307,15
@@
static struct platform_t __initdata platforms[] = {
{ .name = "link", .gpio = 1 << 11, .polarity = REVERSE },
},
},
{ .name = "link", .gpio = 1 << 11, .polarity = REVERSE },
},
},
+ [WL330GE] = {
+ .name = "ASUS WL-330gE",
+ .buttons = {
+ { .name = "reset", .gpio = 1 << 2 },
+ },
+ .leds = {
+ { .name = "power", .gpio = 1 << 0, .polarity = REVERSE },
+ },
+ },
[WL500G] = {
.name = "ASUS WL-500g",
.buttons = {
[WL500G] = {
.name = "ASUS WL-500g",
.buttons = {
@@
-764,12
+773,16
@@
static struct platform_t __init *platform_detect(void)
return &platforms[WL520GC];
if (startswith(buf,"WL520GU-")) /* WL520GU-* */
return &platforms[WL520GU];
return &platforms[WL520GC];
if (startswith(buf,"WL520GU-")) /* WL520GU-* */
return &platforms[WL520GU];
+ if (startswith(buf,"WL330GE-")) /* WL330GE-* */
+ return &platforms[WL330GE];
}
/* Based on "ModelId" */
if ((buf = nvram_get("ModelId"))) {
if (!strcmp(buf, "WR850GP"))
return &platforms[WR850GP];
}
/* Based on "ModelId" */
if ((buf = nvram_get("ModelId"))) {
if (!strcmp(buf, "WR850GP"))
return &platforms[WR850GP];
+ if (!strcmp(buf, "WR850G"))
+ return &platforms[WR850GV2V3];
if (!strcmp(buf, "WX-5565") && !strcmp(getvar("boardtype"),"bcm94710ap"))
return &platforms[TM2300]; /* Dell TrueMobile 2300 */
if (startswith(buf,"WE800G")) /* WE800G* */
if (!strcmp(buf, "WX-5565") && !strcmp(getvar("boardtype"),"bcm94710ap"))
return &platforms[TM2300]; /* Dell TrueMobile 2300 */
if (startswith(buf,"WE800G")) /* WE800G* */
This page took
0.026173 seconds
and
4
git commands to generate.