am300epd.c (cf9ce948f47640797bd19980e1d99c6d17d0bdc3) am300epd.c (ed7936f913456e4c01aed75deba6cfaf830fa8cf)
1/*
2 * am300epd.c -- Platform device for AM300 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.

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

236}
237
238static int am300_setup_irq(struct fb_info *info)
239{
240 int ret;
241 struct broadsheetfb_par *par = info->par;
242
243 ret = request_irq(PXA_GPIO_TO_IRQ(RDY_GPIO_PIN), am300_handle_irq,
1/*
2 * am300epd.c -- Platform device for AM300 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.

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

236}
237
238static int am300_setup_irq(struct fb_info *info)
239{
240 int ret;
241 struct broadsheetfb_par *par = info->par;
242
243 ret = request_irq(PXA_GPIO_TO_IRQ(RDY_GPIO_PIN), am300_handle_irq,
244 IRQF_DISABLED|IRQF_TRIGGER_RISING,
245 "AM300", par);
244 IRQF_TRIGGER_RISING, "AM300", par);
246 if (ret)
247 dev_err(&am300_device->dev, "request_irq failed: %d\n", ret);
248
249 return ret;
250}
251
252static struct broadsheet_board am300_board = {
253 .owner = THIS_MODULE,

--- 43 unchanged lines hidden ---
245 if (ret)
246 dev_err(&am300_device->dev, "request_irq failed: %d\n", ret);
247
248 return ret;
249}
250
251static struct broadsheet_board am300_board = {
252 .owner = THIS_MODULE,

--- 43 unchanged lines hidden ---