mediabay.c (b42f5b0f0fd8c1c442c1b29a3fbcb338e8bd7732) | mediabay.c (c2cdf6aba0dfcfb54be646ab630c1bccd180e890) |
---|---|
1/* 2 * Driver for the media bay on the PowerBook 3400 and 2400. 3 * 4 * Copyright (C) 1998 Paul Mackerras. 5 * 6 * Various evolutions by Benjamin Herrenschmidt & Henry Worth 7 * 8 * This program is free software; you can redistribute it and/or --- 714 unchanged lines hidden (view full) --- 723 .compatible = "ohare-media-bay", 724 .data = &ohare_mb_ops, 725 }, 726 {}, 727}; 728 729static struct macio_driver media_bay_driver = 730{ | 1/* 2 * Driver for the media bay on the PowerBook 3400 and 2400. 3 * 4 * Copyright (C) 1998 Paul Mackerras. 5 * 6 * Various evolutions by Benjamin Herrenschmidt & Henry Worth 7 * 8 * This program is free software; you can redistribute it and/or --- 714 unchanged lines hidden (view full) --- 723 .compatible = "ohare-media-bay", 724 .data = &ohare_mb_ops, 725 }, 726 {}, 727}; 728 729static struct macio_driver media_bay_driver = 730{ |
731 .name = "media-bay", 732 .match_table = media_bay_match, | 731 .driver = { 732 .name = "media-bay", 733 .of_match_table = media_bay_match, 734 }, |
733 .probe = media_bay_attach, 734 .suspend = media_bay_suspend, 735 .resume = media_bay_resume 736}; 737 738static int __init media_bay_init(void) 739{ 740 int i; --- 14 unchanged lines hidden --- | 735 .probe = media_bay_attach, 736 .suspend = media_bay_suspend, 737 .resume = media_bay_resume 738}; 739 740static int __init media_bay_init(void) 741{ 742 int i; --- 14 unchanged lines hidden --- |