Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 35516
b: refs/heads/master
c: 2722de7
h: refs/heads/master
v: v3
  • Loading branch information
David Woodhouse committed Sep 24, 2006
1 parent 8b53542 commit 726280d
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 16 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: 6a3670c4f1b97373425340ab2dc0a66c25983d46
refs/heads/master: 2722de7fed1601eb7de84f929e00776d37a4cf5f
1 change: 0 additions & 1 deletion trunk/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -936,7 +936,6 @@ headers_install: include/linux/version.h scripts_basic FORCE
echo '*** Error: Headers not exportable for this architecture ($(ARCH))'; \
exit 1 ; fi
$(Q)$(MAKE) $(build)=scripts scripts/unifdef
$(Q)rm -rf $(INSTALL_HDR_PATH)/include
$(Q)$(MAKE) -f $(srctree)/scripts/Makefile.headersinst obj=include

PHONY += headers_check
Expand Down
2 changes: 0 additions & 2 deletions trunk/drivers/ata/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ menu "Serial ATA (prod) and Parallel ATA (experimental) drivers"

config ATA
tristate "ATA device support"
depends on !(M32R || M68K) || BROKEN
depends on !SUN4 || BROKEN
select SCSI
---help---
If you want to use a ATA hard disk, ATA tape drive, ATA CD-ROM or
Expand Down
1 change: 0 additions & 1 deletion trunk/drivers/scsi/aacraid/commsup.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
#include <linux/blkdev.h>
#include <linux/delay.h>
#include <linux/kthread.h>
#include <linux/interrupt.h>
#include <scsi/scsi.h>
#include <scsi/scsi_host.h>
#include <scsi/scsi_device.h>
Expand Down
1 change: 0 additions & 1 deletion trunk/include/asm-frv/libata-portmap.h

This file was deleted.

4 changes: 2 additions & 2 deletions trunk/include/linux/netfilter/x_tables.h
Original file line number Diff line number Diff line change
Expand Up @@ -390,13 +390,13 @@ extern int xt_compat_match_offset(struct xt_match *match);
extern void xt_compat_match_from_user(struct xt_entry_match *m,
void **dstptr, int *size);
extern int xt_compat_match_to_user(struct xt_entry_match *m,
void __user **dstptr, int *size);
void * __user *dstptr, int *size);

extern int xt_compat_target_offset(struct xt_target *target);
extern void xt_compat_target_from_user(struct xt_entry_target *t,
void **dstptr, int *size);
extern int xt_compat_target_to_user(struct xt_entry_target *t,
void __user **dstptr, int *size);
void * __user *dstptr, int *size);

#endif /* CONFIG_COMPAT */
#endif /* __KERNEL__ */
Expand Down
2 changes: 1 addition & 1 deletion trunk/include/net/netlabel.h
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
*/
static inline struct sk_buff *netlbl_netlink_alloc_skb(size_t head,
size_t body,
gfp_t gfp_flags)
int gfp_flags)
{
struct sk_buff *skb;

Expand Down
6 changes: 3 additions & 3 deletions trunk/net/ipv4/netfilter/ip_tables.c
Original file line number Diff line number Diff line change
Expand Up @@ -1364,15 +1364,15 @@ struct compat_ipt_replace {
};

static inline int compat_copy_match_to_user(struct ipt_entry_match *m,
void __user **dstptr, compat_uint_t *size)
void * __user *dstptr, compat_uint_t *size)
{
return xt_compat_match_to_user(m, dstptr, size);
}

static int compat_copy_entry_to_user(struct ipt_entry *e,
void __user **dstptr, compat_uint_t *size)
void * __user *dstptr, compat_uint_t *size)
{
struct ipt_entry_target *t;
struct ipt_entry_target __user *t;
struct compat_ipt_entry __user *ce;
u_int16_t target_offset, next_offset;
compat_uint_t origsize;
Expand Down
2 changes: 1 addition & 1 deletion trunk/sound/drivers/mts64.c
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ static int __devinit snd_mts64_ctl_create(struct snd_card *card,
&mts64_ctl_smpte_time_seconds,
&mts64_ctl_smpte_time_frames,
&mts64_ctl_smpte_fps,
NULL };
0 };

for (i = 0; control[i]; ++i) {
err = snd_ctl_add(card, snd_ctl_new1(control[i], mts));
Expand Down
6 changes: 3 additions & 3 deletions trunk/sound/sparc/dbri.c
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,7 @@ static s32 *dbri_cmdlock(struct snd_dbri * dbri, int len)
else
printk(KERN_ERR "DBRI: no space for commands.");

return NULL;
return 0;
}

/*
Expand Down Expand Up @@ -2037,10 +2037,10 @@ static int snd_dbri_open(struct snd_pcm_substream *substream)
spin_unlock_irqrestore(&dbri->lock, flags);

snd_pcm_hw_rule_add(runtime,0,SNDRV_PCM_HW_PARAM_CHANNELS,
snd_hw_rule_format, NULL, SNDRV_PCM_HW_PARAM_FORMAT,
snd_hw_rule_format, 0, SNDRV_PCM_HW_PARAM_FORMAT,
-1);
snd_pcm_hw_rule_add(runtime,0,SNDRV_PCM_HW_PARAM_FORMAT,
snd_hw_rule_channels, NULL,
snd_hw_rule_channels, 0,
SNDRV_PCM_HW_PARAM_CHANNELS,
-1);

Expand Down

0 comments on commit 726280d

Please sign in to comment.