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
4a70cedd
Commit
4a70cedd
authored
Aug 16, 2003
by
Russell King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ARM] Remove struct device .name usage.
parent
2927e486
Changes
14
Show whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
22 additions
and
60 deletions
+22
-60
arch/arm/common/amba.c
arch/arm/common/amba.c
+1
-9
arch/arm/common/platform.c
arch/arm/common/platform.c
+1
-1
arch/arm/common/sa1111.c
arch/arm/common/sa1111.c
+1
-22
arch/arm/kernel/ecard.c
arch/arm/kernel/ecard.c
+19
-3
arch/arm/mach-pxa/lubbock.c
arch/arm/mach-pxa/lubbock.c
+0
-3
arch/arm/mach-sa1100/adsbitsy.c
arch/arm/mach-sa1100/adsbitsy.c
+0
-1
arch/arm/mach-sa1100/badge4.c
arch/arm/mach-sa1100/badge4.c
+0
-1
arch/arm/mach-sa1100/generic.c
arch/arm/mach-sa1100/generic.c
+0
-11
arch/arm/mach-sa1100/graphicsmaster.c
arch/arm/mach-sa1100/graphicsmaster.c
+0
-1
arch/arm/mach-sa1100/jornada720.c
arch/arm/mach-sa1100/jornada720.c
+0
-1
arch/arm/mach-sa1100/neponset.c
arch/arm/mach-sa1100/neponset.c
+0
-4
arch/arm/mach-sa1100/pfs168.c
arch/arm/mach-sa1100/pfs168.c
+0
-1
arch/arm/mach-sa1100/system3.c
arch/arm/mach-sa1100/system3.c
+0
-1
arch/arm/mach-sa1100/xp860.c
arch/arm/mach-sa1100/xp860.c
+0
-1
No files found.
arch/arm/common/amba.c
View file @
4a70cedd
...
...
@@ -180,7 +180,7 @@ int amba_device_register(struct amba_device *dev, struct resource *parent)
dev
->
dev
.
release
=
amba_device_release
;
dev
->
dev
.
bus
=
&
amba_bustype
;
dev
->
res
.
name
=
dev
->
dev
.
name
;
dev
->
res
.
name
=
dev
->
dev
.
bus_id
;
ret
=
request_resource
(
parent
,
&
dev
->
res
);
if
(
ret
==
0
)
{
...
...
@@ -200,14 +200,6 @@ int amba_device_register(struct amba_device *dev, struct resource *parent)
if
(
cid
==
0xb105f00d
)
dev
->
periphid
=
pid
;
if
(
dev
->
periphid
)
snprintf
(
dev
->
dev
.
name
,
sizeof
(
dev
->
dev
.
name
),
"AMBA PL%03X"
,
dev
->
periphid
&
0xfff
);
else
strlcpy
(
dev
->
dev
.
name
,
"AMBA unknown"
,
sizeof
(
dev
->
dev
.
name
));
ret
=
device_register
(
&
dev
->
dev
);
if
(
ret
==
0
)
{
device_create_file
(
&
dev
->
dev
,
&
dev_attr_id
);
...
...
arch/arm/common/platform.c
View file @
4a70cedd
...
...
@@ -9,7 +9,7 @@ int __init platform_add_device(struct platform_device *dev)
for
(
i
=
0
;
i
<
dev
->
num_resources
;
i
++
)
{
struct
resource
*
r
=
&
dev
->
resource
[
i
];
r
->
name
=
dev
->
dev
.
name
;
r
->
name
=
dev
->
dev
.
bus_id
;
if
(
r
->
flags
&
IORESOURCE_MEM
&&
request_resource
(
&
iomem_resource
,
r
))
{
...
...
arch/arm/common/sa1111.c
View file @
4a70cedd
...
...
@@ -55,9 +55,6 @@ struct sa1111 {
static
struct
sa1111
*
g_sa1111
;
static
struct
sa1111_dev
usb_dev
=
{
.
dev
=
{
.
name
=
"Intel Corporation SA1111 [USB Controller]"
,
},
.
skpcr_mask
=
SKPCR_UCLKEN
,
.
devid
=
SA1111_DEVID_USB
,
.
irq
=
{
...
...
@@ -71,9 +68,6 @@ static struct sa1111_dev usb_dev = {
};
static
struct
sa1111_dev
sac_dev
=
{
.
dev
=
{
.
name
=
"Intel Corporation SA1111 [Audio Controller]"
,
},
.
skpcr_mask
=
SKPCR_I2SCLKEN
|
SKPCR_L3CLKEN
,
.
devid
=
SA1111_DEVID_SAC
,
.
irq
=
{
...
...
@@ -85,17 +79,11 @@ static struct sa1111_dev sac_dev = {
};
static
struct
sa1111_dev
ssp_dev
=
{
.
dev
=
{
.
name
=
"Intel Corporation SA1111 [SSP Controller]"
,
},
.
skpcr_mask
=
SKPCR_SCLKEN
,
.
devid
=
SA1111_DEVID_SSP
,
};
static
struct
sa1111_dev
kbd_dev
=
{
.
dev
=
{
.
name
=
"Intel Corporation SA1111 [PS2]"
,
},
.
skpcr_mask
=
SKPCR_PTCLKEN
,
.
devid
=
SA1111_DEVID_PS2
,
.
irq
=
{
...
...
@@ -105,9 +93,6 @@ static struct sa1111_dev kbd_dev = {
};
static
struct
sa1111_dev
mse_dev
=
{
.
dev
=
{
.
name
=
"Intel Corporation SA1111 [PS2]"
,
},
.
skpcr_mask
=
SKPCR_PMCLKEN
,
.
devid
=
SA1111_DEVID_PS2
,
.
irq
=
{
...
...
@@ -117,17 +102,11 @@ static struct sa1111_dev mse_dev = {
};
static
struct
sa1111_dev
int_dev
=
{
.
dev
=
{
.
name
=
"Intel Corporation SA1111 [Interrupt Controller]"
,
},
.
skpcr_mask
=
0
,
.
devid
=
SA1111_DEVID_INT
,
};
static
struct
sa1111_dev
pcmcia_dev
=
{
.
dev
=
{
.
name
=
"Intel Corporation SA1111 [PCMCIA Controller]"
,
},
.
skpcr_mask
=
0
,
.
devid
=
SA1111_DEVID_PCMCIA
,
.
irq
=
{
...
...
@@ -570,7 +549,7 @@ sa1111_init_one_child(struct sa1111 *sachip, struct resource *parent,
sadev
->
dev
.
bus
=
&
sa1111_bus_type
;
sadev
->
res
.
start
=
sachip
->
phys
+
offset
;
sadev
->
res
.
end
=
sadev
->
res
.
start
+
511
;
sadev
->
res
.
name
=
sadev
->
dev
.
name
;
sadev
->
res
.
name
=
sadev
->
dev
.
bus_id
;
sadev
->
res
.
flags
=
IORESOURCE_MEM
;
sadev
->
mapbase
=
sachip
->
base
+
offset
;
...
...
arch/arm/kernel/ecard.c
View file @
4a70cedd
...
...
@@ -811,7 +811,7 @@ static void ecard_proc_init(void)
#define ec_set_resource(ec,nr,st,sz,flg) \
do { \
(ec)->resource[nr].name = ec->dev.
name;
\
(ec)->resource[nr].name = ec->dev.
bus_id;
\
(ec)->resource[nr].start = st; \
(ec)->resource[nr].end = (st) + (sz) - 1; \
(ec)->resource[nr].flags = flg; \
...
...
@@ -893,6 +893,22 @@ static ssize_t ecard_show_resources(struct device *dev, char *buf)
static
DEVICE_ATTR
(
resource
,
S_IRUGO
,
ecard_show_resources
,
NULL
);
static
ssize_t
ecard_show_vendor
(
struct
device
*
dev
,
char
*
buf
)
{
struct
expansion_card
*
ec
=
ECARD_DEV
(
dev
);
return
sprintf
(
buf
,
"%u
\n
"
,
ec
->
manufacturer
);
}
static
DEVICE_ATTR
(
vendor
,
S_IRUGO
,
ecard_show_vendor
,
NULL
);
static
ssize_t
ecard_show_device
(
struct
device
*
dev
,
char
*
buf
)
{
struct
expansion_card
*
ec
=
ECARD_DEV
(
dev
);
return
sprintf
(
buf
,
"%u
\n
"
,
ec
->
product
);
}
static
DEVICE_ATTR
(
device
,
S_IRUGO
,
ecard_show_device
,
NULL
);
/*
* Probe for an expansion card.
*
...
...
@@ -962,8 +978,6 @@ ecard_probe(int slot, card_type_t type)
}
snprintf
(
ec
->
dev
.
bus_id
,
sizeof
(
ec
->
dev
.
bus_id
),
"ecard%d"
,
slot
);
snprintf
(
ec
->
dev
.
name
,
sizeof
(
ec
->
dev
.
name
),
"ecard %04x:%04x"
,
ec
->
cid
.
manufacturer
,
ec
->
cid
.
product
);
ec
->
dev
.
parent
=
NULL
;
ec
->
dev
.
bus
=
&
ecard_bus_type
;
ec
->
dev
.
dma_mask
=
&
ec
->
dma_mask
;
...
...
@@ -1000,6 +1014,8 @@ ecard_probe(int slot, card_type_t type)
device_create_file
(
&
ec
->
dev
,
&
dev_attr_dma
);
device_create_file
(
&
ec
->
dev
,
&
dev_attr_irq
);
device_create_file
(
&
ec
->
dev
,
&
dev_attr_resource
);
device_create_file
(
&
ec
->
dev
,
&
dev_attr_vendor
);
device_create_file
(
&
ec
->
dev
,
&
dev_attr_device
);
return
0
;
...
...
arch/arm/mach-pxa/lubbock.c
View file @
4a70cedd
...
...
@@ -104,9 +104,6 @@ static struct resource sa1111_resources[] = {
static
struct
platform_device
sa1111_device
=
{
.
name
=
"sa1111"
,
.
id
=
0
,
.
dev
=
{
.
name
=
"Intel Corporation SA1111"
,
},
.
num_resources
=
ARRAY_SIZE
(
sa1111_resources
),
.
resource
=
sa1111_resources
,
};
...
...
arch/arm/mach-sa1100/adsbitsy.c
View file @
4a70cedd
...
...
@@ -46,7 +46,6 @@ static struct platform_device sa1111_device = {
.
name
=
"sa1111"
,
.
id
=
0
,
.
dev
=
{
.
name
=
"Intel Corporation SA1111"
,
.
dma_mask
=
&
sa1111_dmamask
,
},
.
num_resources
=
ARRAY_SIZE
(
sa1111_resources
),
...
...
arch/arm/mach-sa1100/badge4.c
View file @
4a70cedd
...
...
@@ -54,7 +54,6 @@ static struct platform_device sa1111_device = {
.
name
=
"sa1111"
,
.
id
=
0
,
.
dev
=
{
.
name
=
"Intel Corporation SA1111"
,
.
dma_mask
=
&
sa1111_dmamask
;
},
.
num_resources
=
ARRAY_SIZE
(
sa1111_resources
),
...
...
arch/arm/mach-sa1100/generic.c
View file @
4a70cedd
...
...
@@ -144,7 +144,6 @@ static struct platform_device sa11x0udc_device = {
.
name
=
"sa11x0-udc"
,
.
id
=
0
,
.
dev
=
{
.
name
=
"Intel Corporation SA11x0 [UDC]"
,
.
dma_mask
=
&
sa11x0udc_dma_mask
,
},
.
num_resources
=
ARRAY_SIZE
(
sa11x0udc_resources
),
...
...
@@ -162,9 +161,6 @@ static struct resource sa11x0mcp_resources[] = {
static
struct
platform_device
sa11x0mcp_device
=
{
.
name
=
"sa11x0-mcp"
,
.
id
=
0
,
.
dev
=
{
.
name
=
"Intel Corporation SA11x0 [MCP]"
,
},
.
num_resources
=
ARRAY_SIZE
(
sa11x0mcp_resources
),
.
resource
=
sa11x0mcp_resources
,
};
...
...
@@ -183,7 +179,6 @@ static struct platform_device sa11x0ssp_device = {
.
name
=
"sa11x0-ssp"
,
.
id
=
0
,
.
dev
=
{
.
name
=
"Intel Corporation SA11x0 [SSP]"
,
.
dma_mask
=
&
sa11x0ssp_dma_mask
,
},
.
num_resources
=
ARRAY_SIZE
(
sa11x0ssp_resources
),
...
...
@@ -206,9 +201,6 @@ static struct resource sa11x0fb_resources[] = {
static
struct
platform_device
sa11x0fb_device
=
{
.
name
=
"sa11x0-fb"
,
.
id
=
0
,
.
dev
=
{
.
name
=
"Intel Corporation SA11x0 [LCD]"
,
},
.
num_resources
=
ARRAY_SIZE
(
sa11x0fb_resources
),
.
resource
=
sa11x0fb_resources
,
};
...
...
@@ -216,9 +208,6 @@ static struct platform_device sa11x0fb_device = {
static
struct
platform_device
sa11x0pcmcia_device
=
{
.
name
=
"sa11x0-pcmcia"
,
.
id
=
0
,
.
dev
=
{
.
name
=
"Intel Corporation SA11x0 [PCMCIA]"
,
},
};
static
struct
platform_device
*
sa11x0_devices
[]
__initdata
=
{
...
...
arch/arm/mach-sa1100/graphicsmaster.c
View file @
4a70cedd
...
...
@@ -43,7 +43,6 @@ static struct platform_device sa1111_device = {
.
name
=
"sa1111"
,
.
id
=
0
,
.
dev
=
{
.
name
=
"Intel Corporation SA1111"
,
.
dma_mask
=
&
sa1111_dmamask
,
},
.
num_resources
=
ARRAY_SIZE
(
sa1111_resources
),
...
...
arch/arm/mach-sa1100/jornada720.c
View file @
4a70cedd
...
...
@@ -43,7 +43,6 @@ static struct platform_device sa1111_device = {
.
name
=
"sa1111"
,
.
id
=
0
,
.
dev
=
{
.
name
=
"Intel Corporation SA1111"
,
.
dma_mask
=
&
sa1111_dmamask
,
},
.
num_resources
=
ARRAY_SIZE
(
sa1111_resources
),
...
...
arch/arm/mach-sa1100/neponset.c
View file @
4a70cedd
...
...
@@ -227,9 +227,6 @@ static struct resource neponset_resources[] = {
static
struct
platform_device
neponset_device
=
{
.
name
=
"neponset"
,
.
id
=
0
,
.
dev
=
{
.
name
=
"Neponset"
,
},
.
num_resources
=
ARRAY_SIZE
(
neponset_resources
),
.
resource
=
neponset_resources
,
};
...
...
@@ -253,7 +250,6 @@ static struct platform_device sa1111_device = {
.
name
=
"sa1111"
,
.
id
=
0
,
.
dev
=
{
.
name
=
"Intel Corporation SA1111"
,
.
dma_mask
=
&
sa1111_dmamask
,
},
.
num_resources
=
ARRAY_SIZE
(
sa1111_resources
),
...
...
arch/arm/mach-sa1100/pfs168.c
View file @
4a70cedd
...
...
@@ -38,7 +38,6 @@ static struct platform_device sa1111_device = {
.
name
=
"sa1111"
,
.
id
=
0
,
.
dev
=
{
.
name
=
"Intel Corporation SA1111"
,
.
dma_mask
=
&
sa1111_dmamask
,
},
.
num_resources
=
ARRAY_SIZE
(
sa1111_resources
),
...
...
arch/arm/mach-sa1100/system3.c
View file @
4a70cedd
...
...
@@ -392,7 +392,6 @@ static struct platform_device sa1111_device = {
.
name
=
"sa1111"
,
.
id
=
0
,
.
dev
=
{
.
name
=
"Intel Corporation SA1111"
,
.
dma_mask
=
&
sa1111_dmamask
,
},
.
num_resources
=
ARRAY_SIZE
(
sa1111_resources
),
...
...
arch/arm/mach-sa1100/xp860.c
View file @
4a70cedd
...
...
@@ -44,7 +44,6 @@ static struct platform_device sa1111_device = {
.
name
=
"sa1111"
,
.
id
=
0
,
.
dev
=
{
.
name
=
"Intel Corporation SA1111"
,
.
dma_mask
=
&
sa1111_dmamask
,
},
.
num_resources
=
ARRAY_SIZE
(
sa1111_resources
),
...
...
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