am200epd.c (cf9ce948f47640797bd19980e1d99c6d17d0bdc3) am200epd.c (ed7936f913456e4c01aed75deba6cfaf830fa8cf)
1/*
2 * am200epd.c -- Platform device for AM200 EPD kit
3 *
4 * Copyright (C) 2008, Jaya Kumar
5 *
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file COPYING in the main directory of this archive for
8 * more details.

--- 279 unchanged lines hidden (view full) ---

288 return IRQ_HANDLED;
289}
290
291static int am200_setup_irq(struct fb_info *info)
292{
293 int ret;
294
295 ret = request_irq(PXA_GPIO_TO_IRQ(RDY_GPIO_PIN), am200_handle_irq,
1/*
2 * am200epd.c -- Platform device for AM200 EPD kit
3 *
4 * Copyright (C) 2008, Jaya Kumar
5 *
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file COPYING in the main directory of this archive for
8 * more details.

--- 279 unchanged lines hidden (view full) ---

288 return IRQ_HANDLED;
289}
290
291static int am200_setup_irq(struct fb_info *info)
292{
293 int ret;
294
295 ret = request_irq(PXA_GPIO_TO_IRQ(RDY_GPIO_PIN), am200_handle_irq,
296 IRQF_DISABLED|IRQF_TRIGGER_FALLING,
297 "AM200", info->par);
296 IRQF_TRIGGER_FALLING, "AM200", info->par);
298 if (ret)
299 dev_err(&am200_device->dev, "request_irq failed: %d\n", ret);
300
301 return ret;
302}
303
304static void am200_set_rst(struct metronomefb_par *par, int state)
305{

--- 82 unchanged lines hidden ---
297 if (ret)
298 dev_err(&am200_device->dev, "request_irq failed: %d\n", ret);
299
300 return ret;
301}
302
303static void am200_set_rst(struct metronomefb_par *par, int state)
304{

--- 82 unchanged lines hidden ---