Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 106386
b: refs/heads/master
c: 4836e30
h: refs/heads/master
v: v3
  • Loading branch information
Linus Torvalds committed Jul 27, 2008
1 parent 656a8bc commit 9ef7a4c
Show file tree
Hide file tree
Showing 119 changed files with 24,958 additions and 323 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4e1e018ecc6f7bfd10fc75b3ff9715cc8164e0a2
refs/heads/master: 4836e3007882984279ca63d3c42bf0b14616eb78
6 changes: 6 additions & 0 deletions trunk/Documentation/isdn/README.mISDN
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
mISDN is a new modular ISDN driver, in the long term it should replace
the old I4L driver architecture for passiv ISDN cards.
It was designed to allow a broad range of applications and interfaces
but only have the basic function in kernel, the interface to the user
space is based on sockets with a own address family AF_ISDN.

6 changes: 4 additions & 2 deletions trunk/drivers/firmware/memmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -153,12 +153,14 @@ int __init firmware_map_add_early(resource_size_t start, resource_size_t end,

static ssize_t start_show(struct firmware_map_entry *entry, char *buf)
{
return snprintf(buf, PAGE_SIZE, "0x%llx\n", entry->start);
return snprintf(buf, PAGE_SIZE, "0x%llx\n",
(unsigned long long)entry->start);
}

static ssize_t end_show(struct firmware_map_entry *entry, char *buf)
{
return snprintf(buf, PAGE_SIZE, "0x%llx\n", entry->end);
return snprintf(buf, PAGE_SIZE, "0x%llx\n",
(unsigned long long)entry->end);
}

static ssize_t type_show(struct firmware_map_entry *entry, char *buf)
Expand Down
4 changes: 3 additions & 1 deletion trunk/drivers/isdn/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#

menuconfig ISDN
tristate "ISDN support"
bool "ISDN support"
depends on NET
depends on !S390
---help---
Expand All @@ -21,6 +21,8 @@ menuconfig ISDN

if ISDN

source "drivers/isdn/mISDN/Kconfig"

menuconfig ISDN_I4L
tristate "Old ISDN4Linux (deprecated)"
---help---
Expand Down
1 change: 1 addition & 0 deletions trunk/drivers/isdn/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

obj-$(CONFIG_ISDN_I4L) += i4l/
obj-$(CONFIG_ISDN_CAPI) += capi/
obj-$(CONFIG_MISDN) += mISDN/
obj-$(CONFIG_ISDN_CAPI) += hardware/
obj-$(CONFIG_ISDN_DIVERSION) += divert/
obj-$(CONFIG_ISDN_DRV_HISAX) += hisax/
Expand Down
1 change: 1 addition & 0 deletions trunk/drivers/isdn/hardware/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@

obj-$(CONFIG_CAPI_AVM) += avm/
obj-$(CONFIG_CAPI_EICON) += eicon/
obj-$(CONFIG_MISDN) += mISDN/
25 changes: 25 additions & 0 deletions trunk/drivers/isdn/hardware/mISDN/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#
# Hardware for mISDN
#
comment "mISDN hardware drivers"

config MISDN_HFCPCI
tristate "Support for HFC PCI cards"
depends on MISDN
depends on PCI
help
Enable support for cards with Cologne Chip AG's
HFC PCI chip.

config MISDN_HFCMULTI
tristate "Support for HFC multiport cards (HFC-4S/8S/E1)"
depends on PCI
depends on MISDN
help
Enable support for cards with Cologne Chip AG's HFC multiport
chip. There are three types of chips that are quite similar,
but the interface is different:
* HFC-4S (4 S/T interfaces on one chip)
* HFC-8S (8 S/T interfaces on one chip)
* HFC-E1 (E1 interface for 2Mbit ISDN)

7 changes: 7 additions & 0 deletions trunk/drivers/isdn/hardware/mISDN/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#
# Makefile for the modular ISDN hardware drivers
#
#

obj-$(CONFIG_MISDN_HFCPCI) += hfcpci.o
obj-$(CONFIG_MISDN_HFCMULTI) += hfcmulti.o
Loading

0 comments on commit 9ef7a4c

Please sign in to comment.