~ubuntu-branches/ubuntu/raring/linux-ppc/raring-proposed

« back to all changes in this revision

Viewing changes to arch/powerpc/platforms/85xx/sgy_cts1000.c

  • Committer: Package Import Robot
  • Author(s): Ben Collins, Ben Collins, PPC Ubuntu: 3.8.0-1.4, Adam Conrad, Andy Whitcroft, Ubuntu: 3.8.0-1.5, Ubuntu: 3.8.0-0.4, Ubuntu: 3.8.0-0.3
  • Date: 2013-01-22 20:41:25 UTC
  • mfrom: (16.1.1 raring)
  • Revision ID: package-import@ubuntu.com-20130122204125-zw3j1vl5temxb1gr
Tags: 3.8.0-1.5
[ Ben Collins ]

* SAUCE: Remove __devinit and __devexit annotations
* SAUCE: Add op emulation to allow newer kernels to run under e500
  qemu-kvm

[ PPC Ubuntu: 3.8.0-1.4 ]

[ Adam Conrad ]

* Sync build-deps with master to avoid future FTBFS
* Fix up linux-tools -> SRCPKGNAME-tools rename
* Add a debian/source/options file to ignore cruft

[ Andy Whitcroft ]

* [Config] enable various HVC consoles
  - LP: #1102206
* [Config] linux-image-* should Suggests: linux-headers-*
  - LP: #1029730

[ Ubuntu: 3.8.0-1.5 ]

* Release Tracking Bug
  - LP: #1101235
* SAUCE: Input: add support for Cypress PS/2 Trackpads
  - LP: #978807
* SAUCE: Input: increase struct ps2dev cmdbuf[] to 8 bytes
* SAUCE: Input: Cypress PS/2 Trackpad simulated multitouch
* [Config] Add CONFIG_PS2_CYPRESS
* rebase to v3.8-rc4
* rebase to v3.8-rc4
  - LP: #1095315
  - LP: #886975
  - LP: #1086921

[ Ubuntu: 3.8.0-0.4 ]

* [Config] Update CONFIG_TOUCHSCREEN_EGALAX build annotation
* [Config] Update CONFIG_IIO build annotation
* [Config] Update CONFIG_TOUCHSCREEN_EETI annotation
* [Config] Remove CONFIG_SPI_DW_MMIO annotation
* [Config] Remove CONFIG_SPI_PL022 annotation
* [Config] Update CONFIG_EZX_PCAP annotation
* [Config] Update CONFIG_SENSORS_AK8975 annotation
* [Config] Disable CONFIG_DRM_MGAG200
  - LP: #1042903

[ Ubuntu: 3.8.0-0.3 ]

* Revert "SAUCE: (no-up) trace: add trace events for open(), exec() and
  uselib()"
* SAUCE: (no-up) trace: add trace events for open(), exec() and uselib()
  (for v3.7+)
  - LP: #1085766, #462111

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
        return IRQ_HANDLED;
70
70
};
71
71
 
72
 
static int __devinit gpio_halt_probe(struct platform_device *pdev)
 
72
static int gpio_halt_probe(struct platform_device *pdev)
73
73
{
74
74
        enum of_gpio_flags flags;
75
75
        struct device_node *node = pdev->dev.of_node;
128
128
        return 0;
129
129
}
130
130
 
131
 
static int __devexit gpio_halt_remove(struct platform_device *pdev)
 
131
static int gpio_halt_remove(struct platform_device *pdev)
132
132
{
133
133
        if (halt_node) {
134
134
                int gpio = of_get_gpio(halt_node, 0);
165
165
                .of_match_table = gpio_halt_match,
166
166
        },
167
167
        .probe          = gpio_halt_probe,
168
 
        .remove         = __devexit_p(gpio_halt_remove),
 
168
        .remove         = gpio_halt_remove,
169
169
};
170
170
 
171
171
module_platform_driver(gpio_halt_driver);