diff options
| author | David Howells <dhowells@redhat.com> | 2006-12-06 10:01:18 -0500 |
|---|---|---|
| committer | David Howells <dhowells@warthog.cambridge.redhat.com> | 2006-12-06 10:01:18 -0500 |
| commit | 4796b71fbb907ce6b8a9acf1852d3646a80b4576 (patch) | |
| tree | 6263f165446c581efdbb760205c1f85378fe6259 /drivers/bluetooth/bluecard_cs.c | |
| parent | 6d5aefb8eaa38e44b5b8cf60c812aceafc02d924 (diff) | |
| parent | ec0bf39a471bf6fcd01def2bd677128cea940b73 (diff) | |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
Conflicts:
drivers/pcmcia/ds.c
Fix up merge failures with Linus's head and fix new compile failures.
Signed-Off-By: David Howells <dhowells@redhat.com>
Diffstat (limited to 'drivers/bluetooth/bluecard_cs.c')
| -rw-r--r-- | drivers/bluetooth/bluecard_cs.c | 38 |
1 files changed, 1 insertions, 37 deletions
diff --git a/drivers/bluetooth/bluecard_cs.c b/drivers/bluetooth/bluecard_cs.c index cbc07250b898..acfb6a430dcc 100644 --- a/drivers/bluetooth/bluecard_cs.c +++ b/drivers/bluetooth/bluecard_cs.c | |||
| @@ -892,43 +892,10 @@ static void bluecard_detach(struct pcmcia_device *link) | |||
| 892 | } | 892 | } |
| 893 | 893 | ||
| 894 | 894 | ||
| 895 | static int first_tuple(struct pcmcia_device *handle, tuple_t *tuple, cisparse_t *parse) | ||
| 896 | { | ||
| 897 | int i; | ||
| 898 | |||
| 899 | i = pcmcia_get_first_tuple(handle, tuple); | ||
| 900 | if (i != CS_SUCCESS) | ||
| 901 | return CS_NO_MORE_ITEMS; | ||
| 902 | |||
| 903 | i = pcmcia_get_tuple_data(handle, tuple); | ||
| 904 | if (i != CS_SUCCESS) | ||
| 905 | return i; | ||
| 906 | |||
| 907 | return pcmcia_parse_tuple(handle, tuple, parse); | ||
| 908 | } | ||
| 909 | |||
| 910 | static int bluecard_config(struct pcmcia_device *link) | 895 | static int bluecard_config(struct pcmcia_device *link) |
| 911 | { | 896 | { |
| 912 | bluecard_info_t *info = link->priv; | 897 | bluecard_info_t *info = link->priv; |
| 913 | tuple_t tuple; | 898 | int i, n; |
| 914 | u_short buf[256]; | ||
| 915 | cisparse_t parse; | ||
| 916 | int i, n, last_ret, last_fn; | ||
| 917 | |||
| 918 | tuple.TupleData = (cisdata_t *)buf; | ||
| 919 | tuple.TupleOffset = 0; | ||
| 920 | tuple.TupleDataMax = 255; | ||
| 921 | tuple.Attributes = 0; | ||
| 922 | |||
| 923 | /* Get configuration register information */ | ||
| 924 | tuple.DesiredTuple = CISTPL_CONFIG; | ||
| 925 | last_ret = first_tuple(link, &tuple, &parse); | ||
| 926 | if (last_ret != CS_SUCCESS) { | ||
| 927 | last_fn = ParseTuple; | ||
| 928 | goto cs_failed; | ||
| 929 | } | ||
| 930 | link->conf.ConfigBase = parse.config.base; | ||
| 931 | link->conf.Present = parse.config.rmask[0]; | ||
| 932 | 899 | ||
| 933 | link->conf.ConfigIndex = 0x20; | 900 | link->conf.ConfigIndex = 0x20; |
| 934 | link->io.NumPorts1 = 64; | 901 | link->io.NumPorts1 = 64; |
| @@ -966,9 +933,6 @@ static int bluecard_config(struct pcmcia_device *link) | |||
| 966 | 933 | ||
| 967 | return 0; | 934 | return 0; |
| 968 | 935 | ||
| 969 | cs_failed: | ||
| 970 | cs_error(link, last_fn, last_ret); | ||
| 971 | |||
| 972 | failed: | 936 | failed: |
| 973 | bluecard_release(link); | 937 | bluecard_release(link); |
| 974 | return -ENODEV; | 938 | return -ENODEV; |
