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
Kirill Smelkov
linux
Commits
d4536e93
Commit
d4536e93
authored
Sep 29, 2003
by
Len Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge intel.com:/home/lenb/bk/linux-2.6.0
into intel.com:/home/lenb/bk/linux-acpi-test-2.6.0
parents
bde5c490
da136c4d
Changes
29
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
29 changed files
with
178 additions
and
224 deletions
+178
-224
arch/ia64/sn/io/sn2/module.c
arch/ia64/sn/io/sn2/module.c
+3
-4
arch/ia64/sn/io/sn2/pic.c
arch/ia64/sn/io/sn2/pic.c
+1
-3
drivers/block/cciss.c
drivers/block/cciss.c
+2
-0
drivers/block/ps2esdi.c
drivers/block/ps2esdi.c
+1
-1
drivers/char/agp/amd64-agp.c
drivers/char/agp/amd64-agp.c
+3
-3
drivers/ide/legacy/pdc4030.c
drivers/ide/legacy/pdc4030.c
+3
-9
drivers/mca/mca-legacy.c
drivers/mca/mca-legacy.c
+1
-1
drivers/mca/mca-proc.c
drivers/mca/mca-proc.c
+8
-3
drivers/net/3c523.c
drivers/net/3c523.c
+1
-1
drivers/net/3c527.c
drivers/net/3c527.c
+1
-1
drivers/net/Space.c
drivers/net/Space.c
+0
-4
drivers/net/at1700.c
drivers/net/at1700.c
+1
-1
drivers/net/eexpress.c
drivers/net/eexpress.c
+0
-1
drivers/net/ibmlana.c
drivers/net/ibmlana.c
+1
-1
drivers/net/ne2.c
drivers/net/ne2.c
+1
-1
drivers/net/ne3210.c
drivers/net/ne3210.c
+132
-163
drivers/net/sk_mca.c
drivers/net/sk_mca.c
+1
-1
drivers/net/tokenring/madgemc.c
drivers/net/tokenring/madgemc.c
+1
-1
drivers/net/tokenring/smctr.c
drivers/net/tokenring/smctr.c
+1
-1
drivers/net/wireless/arlan-main.c
drivers/net/wireless/arlan-main.c
+3
-1
drivers/scsi/ncr53c8xx.c
drivers/scsi/ncr53c8xx.c
+1
-1
drivers/scsi/sym53c8xx_2/sym_glue.h
drivers/scsi/sym53c8xx_2/sym_glue.h
+0
-4
drivers/scsi/sym53c8xx_2/sym_hipd.c
drivers/scsi/sym53c8xx_2/sym_hipd.c
+3
-3
drivers/scsi/sym53c8xx_2/sym_misc.c
drivers/scsi/sym53c8xx_2/sym_misc.c
+1
-1
drivers/scsi/sym53c8xx_comm.h
drivers/scsi/sym53c8xx_comm.h
+0
-4
fs/jfs/jfs_imap.c
fs/jfs/jfs_imap.c
+1
-1
include/linux/hdlcdrv.h
include/linux/hdlcdrv.h
+5
-5
include/linux/mca-legacy.h
include/linux/mca-legacy.h
+2
-0
include/linux/mca.h
include/linux/mca.h
+0
-4
No files found.
arch/ia64/sn/io/sn2/module.c
View file @
d4536e93
...
...
@@ -166,7 +166,6 @@ int module_probe_snum(module_t *m, nasid_t nasid)
{
lboard_t
*
board
;
klmod_serial_num_t
*
comp
;
char
*
bcopy
(
const
char
*
src
,
char
*
dest
,
int
count
);
char
serial_number
[
16
];
/*
...
...
@@ -215,9 +214,9 @@ int module_probe_snum(module_t *m, nasid_t nasid)
#endif
if
(
comp
->
snum
.
snum_str
[
0
]
!=
'\0'
)
{
bcopy
(
comp
->
snum
.
snum_str
,
m
->
sys_snum
,
MAX_SERIAL_NUM_SIZE
);
memcpy
(
m
->
sys_snum
,
comp
->
snum
.
snum_str
,
MAX_SERIAL_NUM_SIZE
);
m
->
sys_snum_valid
=
1
;
}
}
...
...
arch/ia64/sn/io/sn2/pic.c
View file @
d4536e93
...
...
@@ -29,8 +29,6 @@
#include <asm/sn/io.h>
#include <asm/sn/sn_private.h>
extern
char
*
bcopy
(
const
char
*
src
,
char
*
dest
,
int
count
);
#define PCI_BUS_NO_1 1
...
...
@@ -51,7 +49,7 @@ pic_bus1_inventory_dup(vertex_hdl_t conn_v, vertex_hdl_t peer_conn_v)
(
arbitrary_info_t
*
)
&
pinv
)
==
GRAPH_SUCCESS
)
{
NEW
(
peer_pinv
);
bcopy
((
const
char
*
)
pinv
,
(
char
*
)
peer_
pinv
,
sizeof
(
inventory_t
));
memcpy
(
peer_pinv
,
pinv
,
sizeof
(
inventory_t
));
if
(
hwgraph_info_add_LBL
(
peer_conn_v
,
INFO_LBL_INVENT
,
(
arbitrary_info_t
)
peer_pinv
)
!=
GRAPH_SUCCESS
)
{
DEL
(
peer_pinv
);
...
...
drivers/block/cciss.c
View file @
d4536e93
...
...
@@ -636,9 +636,11 @@ static int cciss_ioctl(struct inode *inode, struct file *filep,
{
return
-
EINVAL
;
}
#if 0 /* 'buf_size' member is 16-bits, and always smaller than kmalloc limit */
/* Check kmalloc limits */
if(iocommand.buf_size > 128000)
return -EINVAL;
#endif
if
(
iocommand
.
buf_size
>
0
)
{
buff
=
kmalloc
(
iocommand
.
buf_size
,
GFP_KERNEL
);
...
...
drivers/block/ps2esdi.c
View file @
d4536e93
...
...
@@ -39,7 +39,7 @@
#include <linux/genhd.h>
#include <linux/ps2esdi.h>
#include <linux/blkdev.h>
#include <linux/mca.h>
#include <linux/mca
-legacy
.h>
#include <linux/init.h>
#include <linux/ioport.h>
#include <linux/module.h>
...
...
drivers/char/agp/amd64-agp.c
View file @
d4536e93
...
...
@@ -91,9 +91,9 @@ static int amd64_insert_memory(struct agp_memory *mem, off_t pg_start, int type)
for
(
i
=
0
,
j
=
pg_start
;
i
<
mem
->
page_count
;
i
++
,
j
++
)
{
tmp
=
agp_bridge
->
driver
->
mask_memory
(
mem
->
memory
[
i
],
mem
->
type
);
BUG_ON
(
tmp
&
0xffffff0000000ffc
);
pte
=
(
tmp
&
0x000000ff00000000
)
>>
28
;
pte
|=
(
tmp
&
0x00000000fffff000
);
BUG_ON
(
tmp
&
0xffffff0000000ffc
ULL
);
pte
=
(
tmp
&
0x000000ff00000000
ULL
)
>>
28
;
pte
|=
(
tmp
&
0x00000000fffff000
ULL
);
pte
|=
GPTE_VALID
|
GPTE_COHERENT
;
agp_bridge
->
gatt_table
[
j
]
=
pte
;
...
...
drivers/ide/legacy/pdc4030.c
View file @
d4536e93
...
...
@@ -304,22 +304,16 @@ int __init ide_probe_for_pdc4030(void)
#ifndef MODULE
if
(
enable_promise_support
==
0
)
return
;
return
0
;
#endif
for
(
index
=
0
;
index
<
MAX_HWIFS
;
index
++
)
{
hwif
=
&
ide_hwifs
[
index
];
if
(
hwif
->
chipset
==
ide_unknown
&&
detect_pdc4030
(
hwif
))
{
#ifndef MODULE
setup_pdc4030
(
hwif
);
#else
if
(
hwif
->
chipset
==
ide_unknown
&&
detect_pdc4030
(
hwif
))
return
setup_pdc4030
(
hwif
);
#endif
}
}
#ifdef MODULE
return
0
;
#endif
}
static
void
__exit
release_pdc4030
(
ide_hwif_t
*
hwif
,
ide_hwif_t
*
mate
)
...
...
drivers/mca/mca-legacy.c
View file @
d4536e93
...
...
@@ -28,7 +28,7 @@
#include <linux/module.h>
#include <linux/device.h>
#include <linux/mca.h>
#include <linux/mca
-legacy
.h>
#include <asm/io.h>
/* NOTE: This structure is stack allocated */
...
...
drivers/mca/mca-proc.c
View file @
d4536e93
...
...
@@ -120,12 +120,13 @@ static int mca_default_procfn(char* buf, struct mca_device *mca_dev)
len
+=
sprintf
(
buf
+
len
,
"Id: %02x%02x
\n
"
,
mca_dev
->
pos
[
1
],
mca_dev
->
pos
[
0
]);
len
+=
sprintf
(
buf
+
len
,
"Enabled: %s
\n
POS: "
,
mca_isenabled
(
slot
)
?
"Yes"
:
"No"
);
mca_device_status
(
mca_dev
)
==
MCA_ADAPTER_NORMAL
?
"Yes"
:
"No"
);
for
(
i
=
0
;
i
<
8
;
i
++
)
{
len
+=
sprintf
(
buf
+
len
,
"%02x "
,
mca_dev
->
pos
[
i
]);
}
len
+=
sprintf
(
buf
+
len
,
"
\n
Driver Installed: %s"
,
mca_
is_adapter_used
(
slot
)
?
"Yes"
:
"No"
);
mca_
device_claimed
(
mca_dev
)
?
"Yes"
:
"No"
);
buf
[
len
++
]
=
'\n'
;
buf
[
len
]
=
0
;
...
...
@@ -189,6 +190,7 @@ void __init mca_do_proc_init(void)
/* Initialize /proc/mca entries for existing adapters */
for
(
i
=
0
;
i
<
MCA_NUMADAPTERS
;
i
++
)
{
enum
MCA_AdapterStatus
status
;
mca_dev
=
mca_find_device_by_slot
(
i
);
if
(
!
mca_dev
)
continue
;
...
...
@@ -200,7 +202,10 @@ void __init mca_do_proc_init(void)
else
if
(
i
==
MCA_INTEGSCSI
)
sprintf
(
mca_dev
->
procname
,
"scsi"
);
else
if
(
i
==
MCA_MOTHERBOARD
)
sprintf
(
mca_dev
->
procname
,
"planar"
);
if
(
!
mca_isadapter
(
i
))
continue
;
status
=
mca_device_status
(
mca_dev
);
if
(
status
!=
MCA_ADAPTER_NORMAL
&&
status
!=
MCA_ADAPTER_DISABLED
)
continue
;
node
=
create_proc_read_entry
(
mca_dev
->
procname
,
0
,
proc_mca
,
mca_read_proc
,
(
void
*
)
mca_dev
);
...
...
drivers/net/3c523.c
View file @
d4536e93
...
...
@@ -102,7 +102,7 @@
#include <linux/slab.h>
#include <linux/interrupt.h>
#include <linux/delay.h>
#include <linux/mca.h>
#include <linux/mca
-legacy
.h>
#include <linux/ethtool.h>
#include <asm/uaccess.h>
...
...
drivers/net/3c527.c
View file @
d4536e93
...
...
@@ -92,7 +92,7 @@ DRV_NAME ".c:v" DRV_VERSION " " DRV_RELDATE " Richard Proctor (rnp@netlink.co.nz
#include <linux/types.h>
#include <linux/fcntl.h>
#include <linux/interrupt.h>
#include <linux/mca.h>
#include <linux/mca
-legacy
.h>
#include <linux/ioport.h>
#include <linux/in.h>
#include <linux/skbuff.h>
...
...
drivers/net/Space.c
View file @
d4536e93
...
...
@@ -67,7 +67,6 @@ extern int elplus_probe(struct net_device *);
extern
int
ac3200_probe
(
struct
net_device
*
);
extern
int
es_probe
(
struct
net_device
*
);
extern
int
lne390_probe
(
struct
net_device
*
);
extern
int
ne3210_probe
(
struct
net_device
*
);
extern
int
e2100_probe
(
struct
net_device
*
);
extern
int
ni5010_probe
(
struct
net_device
*
);
extern
int
ni52_probe
(
struct
net_device
*
);
...
...
@@ -154,9 +153,6 @@ static struct devprobe eisa_probes[] __initdata = {
#endif
#ifdef CONFIG_LNE390
{
lne390_probe
,
0
},
#endif
#ifdef CONFIG_NE3210
{
ne3210_probe
,
0
},
#endif
{
NULL
,
0
},
};
...
...
drivers/net/at1700.c
View file @
d4536e93
...
...
@@ -43,7 +43,7 @@
#include <linux/errno.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/mca.h>
#include <linux/mca
-legacy
.h>
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/types.h>
...
...
drivers/net/eexpress.c
View file @
d4536e93
...
...
@@ -113,7 +113,6 @@
#include <linux/etherdevice.h>
#include <linux/skbuff.h>
#include <linux/slab.h>
#include <linux/mca.h>
#include <linux/mca-legacy.h>
#include <linux/spinlock.h>
...
...
drivers/net/ibmlana.c
View file @
d4536e93
...
...
@@ -82,7 +82,7 @@ special acknowledgements to:
#include <linux/interrupt.h>
#include <linux/delay.h>
#include <linux/time.h>
#include <linux/mca.h>
#include <linux/mca
-legacy
.h>
#include <linux/module.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
...
...
drivers/net/ne2.c
View file @
d4536e93
...
...
@@ -70,7 +70,7 @@ static const char *version = "ne2.c:v0.91 Nov 16 1998 Wim Dumon <wimpie@kotnet.o
#include <linux/string.h>
#include <linux/errno.h>
#include <linux/init.h>
#include <linux/mca.h>
#include <linux/mca
-legacy
.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/skbuff.h>
...
...
drivers/net/ne3210.c
View file @
d4536e93
This diff is collapsed.
Click to expand it.
drivers/net/sk_mca.c
View file @
d4536e93
...
...
@@ -89,7 +89,7 @@ paper sources:
#include <linux/interrupt.h>
#include <linux/delay.h>
#include <linux/time.h>
#include <linux/mca.h>
#include <linux/mca
-legacy
.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/version.h>
...
...
drivers/net/tokenring/madgemc.c
View file @
d4536e93
...
...
@@ -20,7 +20,7 @@
static
const
char
version
[]
=
"madgemc.c: v0.91 23/01/2000 by Adam Fritzler
\n
"
;
#include <linux/module.h>
#include <linux/mca.h>
#include <linux/mca
-legacy
.h>
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/pci.h>
...
...
drivers/net/tokenring/smctr.c
View file @
d4536e93
...
...
@@ -43,7 +43,7 @@
#include <linux/errno.h>
#include <linux/init.h>
#include <linux/pci.h>
#include <linux/mca.h>
#include <linux/mca
-legacy
.h>
#include <linux/delay.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
...
...
drivers/net/wireless/arlan-main.c
View file @
d4536e93
...
...
@@ -721,9 +721,9 @@ static int arlan_hw_tx(struct net_device *dev, char *buf, int length)
else
{
netif_stop_queue
(
dev
);
return
-
1
;
IFDEBUG
(
ARLAN_DEBUG_TX_CHAIN
)
printk
(
KERN_ERR
"TX TAIL & HEAD full, return, tailStart %d headEnd %d
\n
"
,
tailStarts
,
headEnds
);
return
-
1
;
}
priv
->
out_bytes
+=
length
;
priv
->
out_bytes10
+=
length
;
...
...
@@ -1881,6 +1881,8 @@ int __init arlan_probe(struct net_device *dev)
#ifdef MODULE
static
int
probe
=
probeUNKNOWN
;
static
int
__init
arlan_find_devices
(
void
)
{
int
m
;
...
...
drivers/scsi/ncr53c8xx.c
View file @
d4536e93
...
...
@@ -7757,7 +7757,7 @@ static void ncr_init_ccb(ncb_p np, ccb_p cp)
cp
->
start
.
schedule
.
l_cmd
=
cpu_to_scr
(
SCR_JUMP
);
cp
->
start
.
p_phys
=
cpu_to_scr
(
CCB_PHYS
(
cp
,
phys
));
bcopy
(
&
cp
->
start
,
&
cp
->
re
start
,
sizeof
(
cp
->
restart
));
memcpy
(
&
cp
->
restart
,
&
cp
->
start
,
sizeof
(
cp
->
restart
));
cp
->
start
.
schedule
.
l_paddr
=
cpu_to_scr
(
NCB_SCRIPT_PHYS
(
np
,
idle
));
cp
->
restart
.
schedule
.
l_paddr
=
cpu_to_scr
(
NCB_SCRIPTH_PHYS
(
np
,
abort
));
...
...
drivers/scsi/sym53c8xx_2/sym_glue.h
View file @
d4536e93
...
...
@@ -70,10 +70,6 @@
#include <scsi/scsi_host.h>
#include "../scsi.h"
/* XXX: DID_* */
#ifndef bcopy
#define bcopy(s, d, n) memcpy((d), (s), (n))
#endif
#ifndef bzero
#define bzero(d, n) memset((d), 0, (n))
#endif
...
...
drivers/scsi/sym53c8xx_2/sym_hipd.c
View file @
d4536e93
...
...
@@ -5889,9 +5889,9 @@ int sym_hcb_attach(hcb_p np, struct sym_fw *fw)
/*
* Copy scripts to controller instance.
*/
bcopy
(
fw
->
a_base
,
np
->
scripta0
,
np
->
scripta_sz
);
bcopy
(
fw
->
b_base
,
np
->
scriptb0
,
np
->
scriptb_sz
);
bcopy
(
fw
->
z_base
,
np
->
scriptz0
,
np
->
scriptz_sz
);
memcpy
(
np
->
scripta0
,
fw
->
a_base
,
np
->
scripta_sz
);
memcpy
(
np
->
scriptb0
,
fw
->
b_base
,
np
->
scriptb_sz
);
memcpy
(
np
->
scriptz0
,
fw
->
z_base
,
np
->
scriptz_sz
);
/*
* Setup variable parts in scripts and compute
...
...
drivers/scsi/sym53c8xx_2/sym_misc.c
View file @
d4536e93
...
...
@@ -225,7 +225,7 @@ void sym_announce_transfer_rate(hcb_p np, int target)
*/
void
sym_update_trans_settings
(
hcb_p
np
,
tcb_p
tp
)
{
bcopy
(
&
tp
->
tinfo
.
user
,
&
tp
->
tinfo
.
goal
,
sizeof
(
tp
->
tinfo
.
goal
));
memcpy
(
&
tp
->
tinfo
.
goal
,
&
tp
->
tinfo
.
user
,
sizeof
(
tp
->
tinfo
.
goal
));
if
(
tp
->
inq_version
>=
4
)
{
switch
(
tp
->
inq_byte56
&
INQ56_CLOCKING
)
{
...
...
drivers/scsi/sym53c8xx_comm.h
View file @
d4536e93
...
...
@@ -88,10 +88,6 @@
#define u_int unsigned int
#define u_long unsigned long
#ifndef bcopy
#define bcopy(s, d, n) memcpy((d), (s), (n))
#endif
#ifndef bcmp
#define bcmp(s, d, n) memcmp((d), (s), (n))
#endif
...
...
fs/jfs/jfs_imap.c
View file @
d4536e93
...
...
@@ -838,7 +838,7 @@ int diWrite(tid_t tid, struct inode *ip)
*/
if
(
S_ISDIR
(
ip
->
i_mode
)
&&
(
ip
->
i_ipmnt
->
i_mntflag
&
JFS_DASD_ENABLED
))
bcopy
(
&
ip
->
i_DASD
,
&
dp
->
d
i_DASD
,
sizeof
(
struct
dasd
));
memcpy
(
&
dp
->
di_DASD
,
&
ip
->
i_DASD
,
sizeof
(
struct
dasd
));
#endif
/* _JFS_FASTDASD */
/* release the buffer holding the updated on-disk inode.
...
...
include/linux/hdlcdrv.h
View file @
d4536e93
...
...
@@ -359,11 +359,11 @@ static inline int hdlcdrv_ptt(struct hdlcdrv_state *s)
void
hdlcdrv_receiver
(
struct
net_device
*
,
struct
hdlcdrv_state
*
);
void
hdlcdrv_transmitter
(
struct
net_device
*
,
struct
hdlcdrv_state
*
);
void
hdlcdrv_arbitrate
(
struct
net_device
*
,
struct
hdlcdrv_state
*
);
int
hdlcdrv_register_hdlcdrv
(
struct
net_device
*
dev
,
const
struct
hdlcdrv_ops
*
ops
,
unsigned
int
privsize
,
char
*
ifname
,
unsigned
int
baseaddr
,
unsigned
int
irq
,
unsigned
int
dma
);
int
hdlcdrv_unregister_hdlcdrv
(
struct
net_device
*
dev
);
struct
net_device
*
hdlcdrv_register
(
const
struct
hdlcdrv_ops
*
ops
,
unsigned
int
privsize
,
const
char
*
ifname
,
unsigned
int
baseaddr
,
unsigned
int
irq
,
unsigned
int
dma
);
void
hdlcdrv_unregister
(
struct
net_device
*
dev
);
/* -------------------------------------------------------------------- */
...
...
include/linux/mca-legacy.h
View file @
d4536e93
...
...
@@ -7,6 +7,8 @@
#ifndef _LINUX_MCA_LEGACY_H
#define _LINUX_MCA_LEGACY_H
#include <linux/mca.h>
#warning "MCA legacy - please move your driver to the new sysfs api"
/* MCA_NOTFOUND is an error condition. The other two indicate
...
...
include/linux/mca.h
View file @
d4536e93
...
...
@@ -136,10 +136,6 @@ extern void mca_unregister_driver(struct mca_driver *drv);
/* WARNING: only called by the boot time device setup */
extern
int
mca_register_device
(
int
bus
,
struct
mca_device
*
mca_dev
);
#ifdef CONFIG_MCA_LEGACY
#include <linux/mca-legacy.h>
#endif
#ifdef CONFIG_MCA_PROC_FS
extern
void
mca_do_proc_init
(
void
);
extern
void
mca_set_adapter_procfn
(
int
slot
,
MCA_ProcFn
,
void
*
dev
);
...
...
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