hgbook
annotate en/examples/mq.tools.tools.out @ 322:73b094b764ec
Fixed bad argument usage with bisect
author | Nicolas Cavigneaux <nico@bounga.org> |
---|---|
date | Thu Jan 15 10:13:51 2009 +0100 (2009-01-15) |
parents | |
children |
rev | line source |
---|---|
bos@144 | 1 $ \textbf{diffstat -p1 remove-redundant-null-checks.patch} |
bos@144 | 2 drivers/char/agp/sgi-agp.c | 5 ++--- |
bos@144 | 3 drivers/char/hvcs.c | 11 +++++------ |
bos@144 | 4 drivers/message/fusion/mptfc.c | 6 ++---- |
bos@144 | 5 drivers/message/fusion/mptsas.c | 3 +-- |
bos@144 | 6 drivers/net/fs_enet/fs_enet-mii.c | 3 +-- |
bos@144 | 7 drivers/net/wireless/ipw2200.c | 22 ++++++---------------- |
bos@144 | 8 drivers/scsi/libata-scsi.c | 4 +--- |
bos@144 | 9 drivers/video/au1100fb.c | 3 +-- |
bos@144 | 10 8 files changed, 19 insertions(+), 38 deletions(-) |
bos@144 | 11 $ \textbf{filterdiff -i '*/video/*' remove-redundant-null-checks.patch} |
bos@144 | 12 |
bos@144 | 13 |
bos@144 | 14 @@ -743,8 +743,7 @@ void __exit au1100fb_cleanup(void) |
bos@144 | 15 \{ |
bos@144 | 16 driver_unregister(&au1100fb_driver); |
bos@144 | 17 |
bos@144 | 18 - if (drv_info.opt_mode) |
bos@144 | 19 - kfree(drv_info.opt_mode); |
bos@144 | 20 + kfree(drv_info.opt_mode); |
bos@144 | 21 \} |
bos@144 | 22 |
bos@144 | 23 module_init(au1100fb_init); |