Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
OpenBMC Firmware
talos-obmc-linux
Commits
7971db5a
Commit
7971db5a
authored
16 years ago
by
Uwe Kleine-Koenig
Browse files
Options
Download
Plain Diff
Merge branch 'for-rmk-misc' into for-rmk
parents
d403700b
c4edfced
Changes
71
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
99 additions
and
57 deletions
+99
-57
arch/arm/Kconfig
arch/arm/Kconfig
+0
-1
arch/arm/configs/netx_defconfig
arch/arm/configs/netx_defconfig
+3
-3
arch/arm/configs/picotux200_defconfig
arch/arm/configs/picotux200_defconfig
+3
-3
arch/arm/include/asm/bitops.h
arch/arm/include/asm/bitops.h
+10
-6
arch/arm/include/asm/processor.h
arch/arm/include/asm/processor.h
+1
-1
arch/arm/kernel/armksyms.c
arch/arm/kernel/armksyms.c
+2
-2
arch/arm/kernel/ftrace.c
arch/arm/kernel/ftrace.c
+1
-1
arch/arm/mach-at91/at91rm9200_time.c
arch/arm/mach-at91/at91rm9200_time.c
+9
-0
arch/arm/mach-omap1/io.c
arch/arm/mach-omap1/io.c
+1
-1
arch/arm/mm/alignment.c
arch/arm/mm/alignment.c
+23
-3
arch/arm/plat-omap/include/mach/omapfb.h
arch/arm/plat-omap/include/mach/omapfb.h
+2
-2
arch/arm/plat-omap/sram.c
arch/arm/plat-omap/sram.c
+4
-4
arch/arm/plat-orion/pcie.c
arch/arm/plat-orion/pcie.c
+1
-1
arch/powerpc/kernel/cpu_setup_44x.S
arch/powerpc/kernel/cpu_setup_44x.S
+1
-0
arch/powerpc/kernel/cputable.c
arch/powerpc/kernel/cputable.c
+3
-0
arch/x86/kernel/amd_iommu.c
arch/x86/kernel/amd_iommu.c
+7
-6
arch/x86/kernel/paravirt-spinlocks.c
arch/x86/kernel/paravirt-spinlocks.c
+2
-1
block/bsg.c
block/bsg.c
+2
-0
block/scsi_ioctl.c
block/scsi_ioctl.c
+2
-0
drivers/ata/Kconfig
drivers/ata/Kconfig
+22
-22
No files found.
arch/arm/Kconfig
View file @
7971db5a
...
...
@@ -156,7 +156,6 @@ config ARCH_MTD_XIP
bool
config GENERIC_HARDIRQS_NO__DO_IRQ
bool
def_bool y
if OPROFILE
...
...
This diff is collapsed.
Click to expand it.
arch/arm/configs/netx_defconfig
View file @
7971db5a
...
...
@@ -728,9 +728,9 @@ CONFIG_RTC_CLASS=m
#
# RTC interfaces
#
CONFIG_RTC_INTF_SYSFS=
m
CONFIG_RTC_INTF_PROC=
m
CONFIG_RTC_INTF_DEV=
m
CONFIG_RTC_INTF_SYSFS=
y
CONFIG_RTC_INTF_PROC=
y
CONFIG_RTC_INTF_DEV=
y
#
# RTC drivers
...
...
This diff is collapsed.
Click to expand it.
arch/arm/configs/picotux200_defconfig
View file @
7971db5a
...
...
@@ -1069,9 +1069,9 @@ CONFIG_RTC_CLASS=m
#
# RTC interfaces
#
CONFIG_RTC_INTF_SYSFS=
m
CONFIG_RTC_INTF_PROC=
m
CONFIG_RTC_INTF_DEV=
m
CONFIG_RTC_INTF_SYSFS=
y
CONFIG_RTC_INTF_PROC=
y
CONFIG_RTC_INTF_DEV=
y
# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
#
...
...
This diff is collapsed.
Click to expand it.
arch/arm/include/asm/bitops.h
View file @
7971db5a
...
...
@@ -237,6 +237,7 @@ extern int _find_next_bit_be(const unsigned long *p, int size, int offset);
#if __LINUX_ARM_ARCH__ < 5
#include <asm-generic/bitops/ffz.h>
#include <asm-generic/bitops/__fls.h>
#include <asm-generic/bitops/__ffs.h>
#include <asm-generic/bitops/fls.h>
#include <asm-generic/bitops/ffs.h>
...
...
@@ -277,16 +278,19 @@ static inline int constant_fls(int x)
* the clz instruction for much better code efficiency.
*/
#define __fls(x) \
( __builtin_constant_p(x) ? constant_fls(x) : \
({ int __r; asm("clz\t%0, %1" : "=r"(__r) : "r"(x) : "cc"); 32-__r; }) )
/* Implement fls() in C so that 64-bit args are suitably truncated */
static
inline
int
fls
(
int
x
)
{
return
__fls
(
x
);
int
ret
;
if
(
__builtin_constant_p
(
x
))
return
constant_fls
(
x
);
asm
(
"clz
\t
%0, %1"
:
"=r"
(
ret
)
:
"r"
(
x
)
:
"cc"
);
ret
=
32
-
ret
;
return
ret
;
}
#define __fls(x) (fls(x) - 1)
#define ffs(x) ({ unsigned long __t = (x); fls(__t & -__t); })
#define __ffs(x) (ffs(x) - 1)
#define ffz(x) __ffs( ~(x) )
...
...
This diff is collapsed.
Click to expand it.
arch/arm/include/asm/processor.h
View file @
7971db5a
...
...
@@ -23,7 +23,7 @@
#include <asm/types.h>
#ifdef __KERNEL__
#define STACK_TOP ((current->personality
== PE
R_LI
NUX
_32BIT) ? \
#define STACK_TOP ((current->personality
& ADD
R_LI
MIT
_32BIT) ? \
TASK_SIZE : TASK_SIZE_26)
#define STACK_TOP_MAX TASK_SIZE
#endif
...
...
This diff is collapsed.
Click to expand it.
arch/arm/kernel/armksyms.c
View file @
7971db5a
...
...
@@ -115,6 +115,8 @@ EXPORT_SYMBOL(__strnlen_user);
EXPORT_SYMBOL
(
__strncpy_from_user
);
#ifdef CONFIG_MMU
EXPORT_SYMBOL
(
copy_page
);
EXPORT_SYMBOL
(
__copy_from_user
);
EXPORT_SYMBOL
(
__copy_to_user
);
EXPORT_SYMBOL
(
__clear_user
);
...
...
@@ -181,8 +183,6 @@ EXPORT_SYMBOL(_find_first_bit_be);
EXPORT_SYMBOL
(
_find_next_bit_be
);
#endif
EXPORT_SYMBOL
(
copy_page
);
#ifdef CONFIG_FUNCTION_TRACER
EXPORT_SYMBOL
(
mcount
);
#endif
This diff is collapsed.
Click to expand it.
arch/arm/kernel/ftrace.c
View file @
7971db5a
...
...
@@ -95,7 +95,7 @@ int ftrace_update_ftrace_func(ftrace_func_t func)
return
ret
;
}
/* run from
kstop_machine
*/
/* run from
ftrace_init with irqs disabled
*/
int
__init
ftrace_dyn_arch_init
(
void
*
data
)
{
ftrace_mcount_set
(
data
);
...
...
This diff is collapsed.
Click to expand it.
arch/arm/mach-at91/at91rm9200_time.c
View file @
7971db5a
...
...
@@ -141,6 +141,15 @@ clkevt32k_next_event(unsigned long delta, struct clock_event_device *dev)
/* Use "raw" primitives so we behave correctly on RT kernels. */
raw_local_irq_save
(
flags
);
/*
* According to Thomas Gleixner irqs are already disabled here. Simply
* removing raw_local_irq_save above (and the matching
* raw_local_irq_restore) was not accepted. See
* http://thread.gmane.org/gmane.linux.ports.arm.kernel/41174
* So for now (2008-11-20) just warn once if irqs were not disabled ...
*/
WARN_ON_ONCE
(
!
raw_irqs_disabled_flags
(
flags
));
/* The alarm IRQ uses absolute time (now+delta), not the relative
* time (delta) in our calling convention. Like all clockevents
* using such "match" hardware, we have a race to defend against.
...
...
This diff is collapsed.
Click to expand it.
arch/arm/mach-omap1/io.c
View file @
7971db5a
...
...
@@ -128,7 +128,7 @@ void __init omap1_map_common_io(void)
* Common low-level hardware init for omap1. This should only get called from
* board specific init.
*/
void
__init
omap1_init_common_hw
()
void
__init
omap1_init_common_hw
(
void
)
{
/* REVISIT: Refer to OMAP5910 Errata, Advisory SYS_1: "Timeout Abort
* on a Posted Write in the TIPB Bridge".
...
...
This diff is collapsed.
Click to expand it.
arch/arm/mm/alignment.c
View file @
7971db5a
...
...
@@ -70,6 +70,10 @@ static unsigned long ai_dword;
static
unsigned
long
ai_multi
;
static
int
ai_usermode
;
#define UM_WARN (1 << 0)
#define UM_FIXUP (1 << 1)
#define UM_SIGNAL (1 << 2)
#ifdef CONFIG_PROC_FS
static
const
char
*
usermode_action
[]
=
{
"ignored"
,
...
...
@@ -754,7 +758,7 @@ do_alignment(unsigned long addr, unsigned int fsr, struct pt_regs *regs)
user:
ai_user
+=
1
;
if
(
ai_usermode
&
1
)
if
(
ai_usermode
&
UM_WARN
)
printk
(
"Alignment trap: %s (%d) PC=0x%08lx Instr=0x%0*lx "
"Address=0x%08lx FSR 0x%03x
\n
"
,
current
->
comm
,
task_pid_nr
(
current
),
instrptr
,
...
...
@@ -762,10 +766,10 @@ do_alignment(unsigned long addr, unsigned int fsr, struct pt_regs *regs)
thumb_mode
(
regs
)
?
tinstr
:
instr
,
addr
,
fsr
);
if
(
ai_usermode
&
2
)
if
(
ai_usermode
&
UM_FIXUP
)
goto
fixup
;
if
(
ai_usermode
&
4
)
if
(
ai_usermode
&
UM_SIGNAL
)
force_sig
(
SIGBUS
,
current
);
else
set_cr
(
cr_no_alignment
);
...
...
@@ -796,6 +800,22 @@ static int __init alignment_init(void)
res
->
write_proc
=
proc_alignment_write
;
#endif
/*
* ARMv6 and later CPUs can perform unaligned accesses for
* most single load and store instructions up to word size.
* LDM, STM, LDRD and STRD still need to be handled.
*
* Ignoring the alignment fault is not an option on these
* CPUs since we spin re-faulting the instruction without
* making any progress.
*/
if
(
cpu_architecture
()
>=
CPU_ARCH_ARMv6
&&
(
cr_alignment
&
CR_U
))
{
cr_alignment
&=
~
CR_A
;
cr_no_alignment
&=
~
CR_A
;
set_cr
(
cr_alignment
);
ai_usermode
=
UM_FIXUP
;
}
hook_fault_code
(
1
,
do_alignment
,
SIGILL
,
"alignment exception"
);
hook_fault_code
(
3
,
do_alignment
,
SIGILL
,
"alignment exception"
);
...
...
This diff is collapsed.
Click to expand it.
arch/arm/plat-omap/include/mach/omapfb.h
View file @
7971db5a
...
...
@@ -353,8 +353,8 @@ struct omapfb_device {
u32
pseudo_palette
[
17
];
struct
lcd_panel
*
panel
;
/* LCD panel */
struct
lcd_ctrl
*
ctrl
;
/* LCD controller */
struct
lcd_ctrl
*
int_ctrl
;
/* internal LCD ctrl */
const
struct
lcd_ctrl
*
ctrl
;
/* LCD controller */
const
struct
lcd_ctrl
*
int_ctrl
;
/* internal LCD ctrl */
struct
lcd_ctrl_extif
*
ext_if
;
/* LCD ctrl external
interface */
struct
device
*
dev
;
...
...
This diff is collapsed.
Click to expand it.
arch/arm/plat-omap/sram.c
View file @
7971db5a
...
...
@@ -255,7 +255,7 @@ void omap_sram_reprogram_clock(u32 dpllctl, u32 ckctl)
if
(
!
_omap_sram_reprogram_clock
)
omap_sram_error
();
return
_omap_sram_reprogram_clock
(
dpllctl
,
ckctl
);
_omap_sram_reprogram_clock
(
dpllctl
,
ckctl
);
}
int
__init
omap1_sram_init
(
void
)
...
...
@@ -282,8 +282,8 @@ void omap2_sram_ddr_init(u32 *slow_dll_ctrl, u32 fast_dll_ctrl,
if
(
!
_omap2_sram_ddr_init
)
omap_sram_error
();
return
_omap2_sram_ddr_init
(
slow_dll_ctrl
,
fast_dll_ctrl
,
base_cs
,
force_unlock
);
_omap2_sram_ddr_init
(
slow_dll_ctrl
,
fast_dll_ctrl
,
base_cs
,
force_unlock
);
}
static
void
(
*
_omap2_sram_reprogram_sdrc
)(
u32
perf_level
,
u32
dll_val
,
...
...
@@ -294,7 +294,7 @@ void omap2_sram_reprogram_sdrc(u32 perf_level, u32 dll_val, u32 mem_type)
if
(
!
_omap2_sram_reprogram_sdrc
)
omap_sram_error
();
return
_omap2_sram_reprogram_sdrc
(
perf_level
,
dll_val
,
mem_type
);
_omap2_sram_reprogram_sdrc
(
perf_level
,
dll_val
,
mem_type
);
}
static
u32
(
*
_omap2_set_prcm
)(
u32
dpll_ctrl_val
,
u32
sdrc_rfr_val
,
int
bypass
);
...
...
This diff is collapsed.
Click to expand it.
arch/arm/plat-orion/pcie.c
View file @
7971db5a
...
...
@@ -35,7 +35,7 @@
#define PCIE_CONF_REG(r) ((((r) & 0xf00) << 16) | ((r) & 0xfc))
#define PCIE_CONF_BUS(b) (((b) & 0xff) << 16)
#define PCIE_CONF_DEV(d) (((d) & 0x1f) << 11)
#define PCIE_CONF_FUNC(f) (((f) & 0x
3
) << 8)
#define PCIE_CONF_FUNC(f) (((f) & 0x
7
) << 8)
#define PCIE_CONF_DATA_OFF 0x18fc
#define PCIE_MASK_OFF 0x1910
#define PCIE_CTRL_OFF 0x1a00
...
...
This diff is collapsed.
Click to expand it.
arch/powerpc/kernel/cpu_setup_44x.S
View file @
7971db5a
...
...
@@ -40,6 +40,7 @@ _GLOBAL(__setup_cpu_460gt)
mtlr
r4
blr
_GLOBAL
(
__setup_cpu_440x5
)
_GLOBAL
(
__setup_cpu_440gx
)
_GLOBAL
(
__setup_cpu_440spe
)
b
__fixup_440A_mcheck
...
...
This diff is collapsed.
Click to expand it.
arch/powerpc/kernel/cputable.c
View file @
7971db5a
...
...
@@ -39,6 +39,7 @@ extern void __setup_cpu_440epx(unsigned long offset, struct cpu_spec* spec);
extern
void
__setup_cpu_440gx
(
unsigned
long
offset
,
struct
cpu_spec
*
spec
);
extern
void
__setup_cpu_440grx
(
unsigned
long
offset
,
struct
cpu_spec
*
spec
);
extern
void
__setup_cpu_440spe
(
unsigned
long
offset
,
struct
cpu_spec
*
spec
);
extern
void
__setup_cpu_440x5
(
unsigned
long
offset
,
struct
cpu_spec
*
spec
);
extern
void
__setup_cpu_460ex
(
unsigned
long
offset
,
struct
cpu_spec
*
spec
);
extern
void
__setup_cpu_460gt
(
unsigned
long
offset
,
struct
cpu_spec
*
spec
);
extern
void
__setup_cpu_603
(
unsigned
long
offset
,
struct
cpu_spec
*
spec
);
...
...
@@ -1500,6 +1501,8 @@ static struct cpu_spec __initdata cpu_specs[] = {
.
cpu_user_features
=
COMMON_USER_BOOKE
,
.
icache_bsize
=
32
,
.
dcache_bsize
=
32
,
.
cpu_setup
=
__setup_cpu_440x5
,
.
machine_check
=
machine_check_440A
,
.
platform
=
"ppc440"
,
},
{
/* 460EX */
...
...
This diff is collapsed.
Click to expand it.
arch/x86/kernel/amd_iommu.c
View file @
7971db5a
...
...
@@ -344,7 +344,7 @@ static int iommu_map(struct protection_domain *dom,
u64
__pte
,
*
pte
,
*
page
;
bus_addr
=
PAGE_ALIGN
(
bus_addr
);
phys_addr
=
PAGE_ALIGN
(
bu
s_addr
);
phys_addr
=
PAGE_ALIGN
(
phy
s_addr
);
/* only support 512GB address spaces for now */
if
(
bus_addr
>
IOMMU_MAP_SIZE_L3
||
!
(
prot
&
IOMMU_PROT_MASK
))
...
...
@@ -600,7 +600,7 @@ static void dma_ops_free_pagetable(struct dma_ops_domain *dma_dom)
continue
;
p2
=
IOMMU_PTE_PAGE
(
p1
[
i
]);
for
(
j
=
0
;
j
<
512
;
++
i
)
{
for
(
j
=
0
;
j
<
512
;
++
j
)
{
if
(
!
IOMMU_PTE_PRESENT
(
p2
[
j
]))
continue
;
p3
=
IOMMU_PTE_PAGE
(
p2
[
j
]);
...
...
@@ -910,7 +910,7 @@ static void dma_ops_domain_unmap(struct amd_iommu *iommu,
if
(
address
>=
dom
->
aperture_size
)
return
;
WARN_ON
(
address
&
0xfffULL
||
address
>
dom
->
aperture_size
);
WARN_ON
(
address
&
~
PAGE_MASK
||
address
>
=
dom
->
aperture_size
);
pte
=
dom
->
pte_pages
[
IOMMU_PTE_L1_INDEX
(
address
)];
pte
+=
IOMMU_PTE_L0_INDEX
(
address
);
...
...
@@ -922,8 +922,8 @@ static void dma_ops_domain_unmap(struct amd_iommu *iommu,
/*
* This function contains common code for mapping of a physically
* contiguous memory region into DMA address space. It is use
s
by all
* mapping functions provided
by
this IOMMU driver.
* contiguous memory region into DMA address space. It is use
d
by all
* mapping functions provided
with
this IOMMU driver.
* Must be called with the domain lock held.
*/
static
dma_addr_t
__map_single
(
struct
device
*
dev
,
...
...
@@ -983,7 +983,8 @@ static void __unmap_single(struct amd_iommu *iommu,
dma_addr_t
i
,
start
;
unsigned
int
pages
;
if
((
dma_addr
==
0
)
||
(
dma_addr
+
size
>
dma_dom
->
aperture_size
))
if
((
dma_addr
==
bad_dma_address
)
||
(
dma_addr
+
size
>
dma_dom
->
aperture_size
))
return
;
pages
=
iommu_num_pages
(
dma_addr
,
size
,
PAGE_SIZE
);
...
...
This diff is collapsed.
Click to expand it.
arch/x86/kernel/paravirt-spinlocks.c
View file @
7971db5a
...
...
@@ -7,7 +7,8 @@
#include <asm/paravirt.h>
static
void
default_spin_lock_flags
(
struct
raw_spinlock
*
lock
,
unsigned
long
flags
)
static
inline
void
default_spin_lock_flags
(
raw_spinlock_t
*
lock
,
unsigned
long
flags
)
{
__raw_spin_lock
(
lock
);
}
...
...
This diff is collapsed.
Click to expand it.
block/bsg.c
View file @
7971db5a
...
...
@@ -202,6 +202,8 @@ static int blk_fill_sgv4_hdr_rq(struct request_queue *q, struct request *rq,
rq
->
timeout
=
q
->
sg_timeout
;
if
(
!
rq
->
timeout
)
rq
->
timeout
=
BLK_DEFAULT_SG_TIMEOUT
;
if
(
rq
->
timeout
<
BLK_MIN_SG_TIMEOUT
)
rq
->
timeout
=
BLK_MIN_SG_TIMEOUT
;
return
0
;
}
...
...
This diff is collapsed.
Click to expand it.
block/scsi_ioctl.c
View file @
7971db5a
...
...
@@ -208,6 +208,8 @@ static int blk_fill_sghdr_rq(struct request_queue *q, struct request *rq,
rq
->
timeout
=
q
->
sg_timeout
;
if
(
!
rq
->
timeout
)
rq
->
timeout
=
BLK_DEFAULT_SG_TIMEOUT
;
if
(
rq
->
timeout
<
BLK_MIN_SG_TIMEOUT
)
rq
->
timeout
=
BLK_MIN_SG_TIMEOUT
;
return
0
;
}
...
...
This diff is collapsed.
Click to expand it.
drivers/ata/Kconfig
View file @
7971db5a
...
...
@@ -153,7 +153,7 @@ config SATA_PROMISE
If unsure, say N.
config SATA_SX4
tristate "Promise SATA SX4 support"
tristate "Promise SATA SX4 support
(Experimental)
"
depends on PCI && EXPERIMENTAL
help
This option enables support for Promise Serial ATA SX4.
...
...
@@ -219,8 +219,8 @@ config PATA_ACPI
otherwise unsupported hardware.
config PATA_ALI
tristate "ALi PATA support
(Experimental)
"
depends on PCI
&& EXPERIMENTAL
tristate "ALi PATA support"
depends on PCI
help
This option enables support for the ALi ATA interfaces
found on the many ALi chipsets.
...
...
@@ -263,7 +263,7 @@ config PATA_ATIIXP
If unsure, say N.
config PATA_CMD640_PCI
tristate "CMD640 PCI PATA support (
Very
Experimental)"
tristate "CMD640 PCI PATA support (Experimental)"
depends on PCI && EXPERIMENTAL
help
This option enables support for the CMD640 PCI IDE
...
...
@@ -291,8 +291,8 @@ config PATA_CS5520
If unsure, say N.
config PATA_CS5530
tristate "CS5530 PATA support
(Experimental)
"
depends on PCI
&& EXPERIMENTAL
tristate "CS5530 PATA support"
depends on PCI
help
This option enables support for the Cyrix/NatSemi/AMD CS5530
companion chip used with the MediaGX/Geode processor family.
...
...
@@ -309,8 +309,8 @@ config PATA_CS5535
If unsure, say N.
config PATA_CS5536
tristate "CS5536 PATA support
(Experimental)
"
depends on PCI && X86 && !X86_64
&& EXPERIMENTAL
tristate "CS5536 PATA support"
depends on PCI && X86 && !X86_64
help
This option enables support for the AMD CS5536
companion chip used with the Geode LX processor family.
...
...
@@ -363,7 +363,7 @@ config PATA_HPT37X
If unsure, say N.
config PATA_HPT3X2N
tristate "HPT 372N/302N PATA support (
Very
Experimental)"
tristate "HPT 372N/302N PATA support (Experimental)"
depends on PCI && EXPERIMENTAL
help
This option enables support for the N variant HPT PATA
...
...
@@ -389,8 +389,8 @@ config PATA_HPT3X3_DMA
problems with DMA on this chipset.
config PATA_ISAPNP
tristate "ISA Plug and Play PATA support
(Experimental)
"
depends on
EXPERIMENTAL &&
ISAPNP
tristate "ISA Plug and Play PATA support"
depends on ISAPNP
help
This option enables support for ISA plug & play ATA
controllers such as those found on old soundcards.
...
...
@@ -498,8 +498,8 @@ config PATA_NINJA32
If unsure, say N.
config PATA_NS87410
tristate "Nat Semi NS87410 PATA support
(Experimental)
"
depends on PCI
&& EXPERIMENTAL
tristate "Nat Semi NS87410 PATA support"
depends on PCI
help
This option enables support for the National Semiconductor
NS87410 PCI-IDE controller.
...
...
@@ -507,8 +507,8 @@ config PATA_NS87410
If unsure, say N.
config PATA_NS87415
tristate "Nat Semi NS87415 PATA support
(Experimental)
"
depends on PCI
&& EXPERIMENTAL
tristate "Nat Semi NS87415 PATA support"
depends on PCI
help
This option enables support for the National Semiconductor
NS87415 PCI-IDE controller.
...
...
@@ -544,8 +544,8 @@ config PATA_PCMCIA
If unsure, say N.
config PATA_PDC_OLD
tristate "Older Promise PATA controller support
(Experimental)
"
depends on PCI
&& EXPERIMENTAL
tristate "Older Promise PATA controller support"
depends on PCI
help
This option enables support for the Promise 20246, 20262, 20263,
20265 and 20267 adapters.
...
...
@@ -559,7 +559,7 @@ config PATA_QDI
Support for QDI 6500 and 6580 PATA controllers on VESA local bus.
config PATA_RADISYS
tristate "RADISYS 82600 PATA support (
Very
Experimental)"
tristate "RADISYS 82600 PATA support (Experimental)"
depends on PCI && EXPERIMENTAL
help
This option enables support for the RADISYS 82600
...
...
@@ -586,8 +586,8 @@ config PATA_RZ1000
If unsure, say N.
config PATA_SC1200
tristate "SC1200 PATA support
(Very Experimental)
"
depends on PCI
&& EXPERIMENTAL
tristate "SC1200 PATA support"
depends on PCI
help
This option enables support for the NatSemi/AMD SC1200 SoC
companion chip used with the Geode processor family.
...
...
@@ -620,8 +620,8 @@ config PATA_SIL680
If unsure, say N.
config PATA_SIS
tristate "SiS PATA support
(Experimental)
"
depends on PCI
&& EXPERIMENTAL
tristate "SiS PATA support"
depends on PCI
help
This option enables support for SiS PATA controllers
...
...
This diff is collapsed.
Click to expand it.
Prev
1
2
3
4
Next
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