Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
5dc70dac
Commit
5dc70dac
authored
Jul 28, 2004
by
Deepak Saxena
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://linux.bkbits.net/linux-2.5
into plexity.net:/home/dsaxena/src/linux-2.5-bk
parents
f9c235e6
efc34f09
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
23 additions
and
30 deletions
+23
-30
arch/arm/mach-ixp4xx/common-pci.c
arch/arm/mach-ixp4xx/common-pci.c
+2
-0
arch/arm/mach-ixp4xx/coyote-setup.c
arch/arm/mach-ixp4xx/coyote-setup.c
+6
-2
arch/arm/mach-ixp4xx/ixdp425-setup.c
arch/arm/mach-ixp4xx/ixdp425-setup.c
+7
-3
arch/arm/mach-ixp4xx/prpmc1100-setup.c
arch/arm/mach-ixp4xx/prpmc1100-setup.c
+6
-2
include/linux/pkt_cls.h
include/linux/pkt_cls.h
+2
-23
No files found.
arch/arm/mach-ixp4xx/common-pci.c
View file @
5dc70dac
...
...
@@ -540,4 +540,6 @@ pci_set_consistent_dma_mask(struct pci_dev *dev, u64 mask)
EXPORT_SYMBOL
(
pci_set_dma_mask
);
EXPORT_SYMBOL
(
pci_dac_set_dma_mask
);
EXPORT_SYMBOL
(
pci_set_consistent_dma_mask
);
EXPORT_SYMBOL
(
ixp4xx_pci_read
);
EXPORT_SYMBOL
(
ixp4xx_pci_write
);
arch/arm/mach-ixp4xx/coyote-setup.c
View file @
5dc70dac
...
...
@@ -63,7 +63,7 @@ static struct resource coyote_flash_resource = {
.
flags
=
IORESOURCE_MEM
,
};
static
struct
platform_device
coyote_flash
_device
=
{
static
struct
platform_device
coyote_flash
=
{
.
name
=
"IXP4XX-Flash"
,
.
id
=
0
,
.
dev
=
{
...
...
@@ -73,9 +73,13 @@ static struct platform_device coyote_flash_device = {
.
resource
=
&
coyote_flash_resource
,
};
static
struct
platform_device
*
coyote_devices
[]
__initdata
=
{
&
coyote_flash
};
static
void
__init
coyote_init
(
void
)
{
platform_add_device
(
&
coyote_flash_device
);
platform_add_device
s
(
&
coyote_devices
,
ARRAY_SIZE
(
coyote_devices
)
);
}
MACHINE_START
(
ADI_COYOTE
,
"ADI Engineering IXP4XX Coyote Development Platform"
)
...
...
arch/arm/mach-ixp4xx/ixdp425-setup.c
View file @
5dc70dac
...
...
@@ -77,7 +77,7 @@ static struct resource ixdp425_flash_resource = {
.
flags
=
IORESOURCE_MEM
,
};
static
struct
platform_device
ixdp425_flash
_device
=
{
static
struct
platform_device
ixdp425_flash
=
{
.
name
=
"IXP4XX-Flash"
,
.
id
=
0
,
.
dev
=
{
...
...
@@ -101,10 +101,14 @@ static struct platform_device ixdp425_i2c_controller = {
.
num_resources
=
0
};
static
struct
platform_device
*
ixdp425_devices
[]
__initdata
=
{
&
ixdp425_i2c_controller
,
&
ixdp425_flash
};
static
void
__init
ixdp425_init
(
void
)
{
platform_add_device
(
&
ixdp425_flash_device
);
platform_add_device
(
&
ixdp425_i2c_controller
);
platform_add_devices
(
&
ixdp425_devices
,
ARRAY_SIZE
(
ixdp425_devices
));
}
MACHINE_START
(
IXDP425
,
"Intel IXDP425 Development Platform"
)
...
...
arch/arm/mach-ixp4xx/prpmc1100-setup.c
View file @
5dc70dac
...
...
@@ -63,7 +63,7 @@ static struct resource prpmc1100_flash_resource = {
.
flags
=
IORESOURCE_MEM
,
};
static
struct
platform_device
prpmc1100_flash
_device
=
{
static
struct
platform_device
prpmc1100_flash
=
{
.
name
=
"IXP4XX-Flash"
,
.
id
=
0
,
.
dev
=
{
...
...
@@ -73,9 +73,13 @@ static struct platform_device prpmc1100_flash_device = {
.
resource
=
&
prpmc1100_flash_resource
,
};
static
struct
platform_device
*
prpmc1100_devices
[]
__initdata
=
{
&
prpmc1100_flash
};
static
void
__init
prpmc1100_init
(
void
)
{
platform_add_device
(
&
prpmc1100_flash_device
);
platform_add_device
s
(
&
prpmc1100_devices
,
ARRAY_SIZE
(
prpmc1100_devices
)
);
}
MACHINE_START
(
PRPMC1100
,
"Motorola PrPMC1100"
)
...
...
include/linux/pkt_cls.h
View file @
5dc70dac
...
...
@@ -117,17 +117,8 @@ enum
struct
tc_police
{
__u32
index
;
#ifdef CONFIG_NET_CLS_ACT
int
refcnt
;
int
bindcnt
;
#endif
/* Turned off because it requires new tc
* to work (for now maintain ABI)
*
#ifdef CONFIG_NET_CLS_ACT
__u32 capab;
#endif
*/
int
action
;
#define TC_POLICE_UNSPEC TC_ACT_UNSPEC
#define TC_POLICE_OK TC_ACT_OK
...
...
@@ -195,12 +186,8 @@ enum
TCA_U32_DIVISOR
,
TCA_U32_SEL
,
TCA_U32_POLICE
,
#ifdef CONFIG_NET_CLS_ACT
TCA_U32_ACT
,
#endif
#ifdef CONFIG_NET_CLS_IND
TCA_U32_INDEV
,
#endif
__TCA_U32_MAX
};
...
...
@@ -212,9 +199,7 @@ struct tc_u32_key
__u32
val
;
int
off
;
int
offmask
;
#ifdef CONFIG_CLS_U32_PERF
unsigned
long
kcnt
;
#endif
__u32
kcnt
;
};
struct
tc_u32_sel
...
...
@@ -229,11 +214,9 @@ struct tc_u32_sel
short
hoff
;
__u32
hmask
;
#ifdef CONFIG_CLS_U32_PERF
struct
tc_u32_key
keys
[
0
];
unsigned
long
rcnt
;
unsigned
long
rhit
;
#endif
struct
tc_u32_key
keys
[
0
];
};
/* Flags */
...
...
@@ -300,12 +283,8 @@ enum
TCA_FW_UNSPEC
,
TCA_FW_CLASSID
,
TCA_FW_POLICE
,
#ifdef CONFIG_NET_CLS_IND
TCA_FW_INDEV
,
#endif
#ifdef CONFIG_NET_CLS_ACT
TCA_FW_ACT
,
#endif
__TCA_FW_MAX
};
...
...
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