Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci-2.6.23
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci-2.6.23
Commits
2bfe9490
Commit
2bfe9490
authored
Jun 07, 2005
by
Tony Luck
Browse files
Options
Browse Files
Download
Plain Diff
Auto merge with /home/aegl/GIT/linus
parents
26abd53d
3f5948fa
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
23 additions
and
5 deletions
+23
-5
drivers/net/tg3.c
drivers/net/tg3.c
+18
-3
drivers/pci/pci.ids
drivers/pci/pci.ids
+1
-0
include/asm-ppc/sigcontext.h
include/asm-ppc/sigcontext.h
+1
-1
include/linux/acpi.h
include/linux/acpi.h
+2
-0
net/core/ethtool.c
net/core/ethtool.c
+1
-1
No files found.
drivers/net/tg3.c
View file @
2bfe9490
...
...
@@ -7,7 +7,12 @@
* Copyright (C) 2005 Broadcom Corporation.
*
* Firmware is:
* Derived from proprietary unpublished source code,
* Copyright (C) 2000-2003 Broadcom Corporation.
*
* Permission is hereby granted for the distribution of this firmware
* data in hexadecimal or equivalent format, provided this copyright
* notice is accompanying it.
*/
#include <linux/config.h>
...
...
@@ -61,8 +66,8 @@
#define DRV_MODULE_NAME "tg3"
#define PFX DRV_MODULE_NAME ": "
#define DRV_MODULE_VERSION "3.
29
"
#define DRV_MODULE_RELDATE "
May 23
, 2005"
#define DRV_MODULE_VERSION "3.
30
"
#define DRV_MODULE_RELDATE "
June 6
, 2005"
#define TG3_DEF_MAC_MODE 0
#define TG3_DEF_RX_MODE 0
...
...
@@ -8555,6 +8560,16 @@ static void __devinit tg3_get_eeprom_hw_cfg(struct tg3 *tp)
case
NIC_SRAM_DATA_CFG_LED_MODE_MAC
:
tp
->
led_ctrl
=
LED_CTRL_MODE_MAC
;
/* Default to PHY_1_MODE if 0 (MAC_MODE) is
* read on some older 5700/5701 bootcode.
*/
if
(
GET_ASIC_REV
(
tp
->
pci_chip_rev_id
)
==
ASIC_REV_5700
||
GET_ASIC_REV
(
tp
->
pci_chip_rev_id
)
==
ASIC_REV_5701
)
tp
->
led_ctrl
=
LED_CTRL_MODE_PHY_1
;
break
;
case
SHASTA_EXT_LED_SHARED
:
...
...
drivers/pci/pci.ids
View file @
2bfe9490
...
...
@@ -7173,6 +7173,7 @@
080f Sentry5 DDR/SDR RAM Controller
0811 Sentry5 External Interface Core
0816 BCM3302 Sentry5 MIPS32 CPU
1600 NetXtreme BCM5752 Gigabit Ethernet PCI Express
1644 NetXtreme BCM5700 Gigabit Ethernet
1014 0277 Broadcom Vigil B5700 1000Base-T
1028 00d1 Broadcom BCM5700
...
...
include/asm-ppc/sigcontext.h
View file @
2bfe9490
...
...
@@ -2,7 +2,7 @@
#define _ASM_PPC_SIGCONTEXT_H
#include <asm/ptrace.h>
#include <linux/compiler.h>
struct
sigcontext
{
unsigned
long
_unused
[
4
];
...
...
include/linux/acpi.h
View file @
2bfe9490
...
...
@@ -25,6 +25,8 @@
#ifndef _LINUX_ACPI_H
#define _LINUX_ACPI_H
#include <linux/config.h>
#ifdef CONFIG_ACPI
#ifndef _LINUX
...
...
net/core/ethtool.c
View file @
2bfe9490
...
...
@@ -356,7 +356,7 @@ static int ethtool_set_coalesce(struct net_device *dev, void __user *useraddr)
{
struct
ethtool_coalesce
coalesce
;
if
(
!
dev
->
ethtool_ops
->
g
et_coalesce
)
if
(
!
dev
->
ethtool_ops
->
s
et_coalesce
)
return
-
EOPNOTSUPP
;
if
(
copy_from_user
(
&
coalesce
,
useraddr
,
sizeof
(
coalesce
)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment